Added Dockerfile

This commit is contained in:
ZKWolf 2023-06-08 01:16:59 +02:00
parent 27296b5c3e
commit 3033f1dcab

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM python:3.10-alpine
COPY . /app
COPY requirements.txt /app/src
WORKDIR /app/src
RUN pip install -r requirements.txt
EXPOSE 8080
HEALTHCHECK CMD curl --fail http://localhost:8080/
ENTRYPOINT ["python", "start_app.py"]