TP_JO2024/athlete/Dockerfile
2024-03-27 11:18:57 +01:00

11 lines
150 B
Docker

FROM python:alpine3.19
WORKDIR /app
COPY /requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "app.py"]