aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: ad15cae3c1073170713f60b58978e716b0d9249d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# hadolint ignore=DL3007
FROM alpine:20231219

# hadolint ignore=DL3018
RUN apk add --no-cache \
		py3-pip \
    curl

WORKDIR /app

COPY templates/file_list.html ./templates/
COPY requirements.txt .
COPY app.py .
COPY gunicorn_config.py .

RUN pip install --no-cache-dir --break-system-packages -r requirements.txt

EXPOSE 5000

HEALTHCHECK --interval=5s --timeout=3s \
  CMD curl -f http://localhost:5000/health || exit 1

#CMD [ "python3", "-m" , "flask", "run", "--port", "5000", "--host", "0.0.0.0"]
CMD [ "python3", "-m" , "gunicorn", "app:app", "-c", "gunicorn_config.py"]