diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..43fcaac --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM python:3.11-slim + +WORKDIR /app + +COPY . . + +RUN test -f settings.cfg || (echo "Error: settings.cfg not found" && exit 1) + +RUN pip install -r requirements.txt + +EXPOSE 5000 + +CMD ["python", "app.py"] \ No newline at end of file