diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..cb9cd1d --- /dev/null +++ b/Dockerfile @@ -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"]