TP_JO2024/athlete/Dockerfile

11 lines
150 B
Text
Raw Normal View History

2024-03-27 11:18:57 +01:00
FROM python:alpine3.19
WORKDIR /app
COPY /requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "app.py"]