TP_JO2024/medaille/Dockerfile

20 lines
436 B
Text
Raw Permalink Normal View History

2024-03-27 14:17:05 +01:00
FROM python:alpine3.19
WORKDIR /app
COPY /requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY medaille/ .
RUN apk update && apk add --no-cache curl
HEALTHCHECK --interval=5s --timeout=3s --start-period=5s --retries=3 CMD curl --fail http://localhost:8000/ping || exit 1
COPY sample/medailles.json ./data/
EXPOSE 8000
ENV MEDAILLE_FILE=data/medailles.json
CMD ["gunicorn", "-b", "0.0.0.0:8000", "app:app"]