python-api-server/Dockerfile

25 lines
549 B
Docker
Raw Normal View History

2023-11-08 16:20:13 +01:00
# hadolint ignore=DL3007
2023-11-08 16:27:34 +01:00
FROM alpine:3
2023-04-12 16:08:55 +02:00
2023-11-08 16:20:13 +01:00
# hadolint ignore=DL3018
RUN apk add --no-cache \
2023-11-08 16:21:50 +01:00
py3-pip \
2023-11-08 16:20:13 +01:00
curl
2023-04-12 16:08:55 +02:00
WORKDIR /app
COPY templates/file_list.html ./templates/
2023-04-12 16:08:55 +02:00
COPY requirements.txt .
COPY app.py .
2023-04-13 15:00:03 +02:00
COPY gunicorn_config.py .
2023-04-12 16:08:55 +02:00
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 5000
2023-04-14 12:17:08 +02:00
HEALTHCHECK --interval=5s --timeout=3s \
CMD curl -f http://localhost:5000/health || exit 1
2023-04-13 14:58:39 +02:00
#CMD [ "python3", "-m" , "flask", "run", "--port", "5000", "--host", "0.0.0.0"]
CMD [ "python3", "-m" , "gunicorn", "app:app", "-c", "gunicorn_config.py"]