This repository has been archived on 2025-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
CS-340_Project1/Dockerfile
2024-03-09 20:28:55 -05:00

5 lines
126 B
Docker

FROM python:3.11.8-alpine3.18
COPY ./app /app
WORKDIR /app
RUN pip3 install -r requirements.txt
CMD ["python", "/app/main.py"]