build: add dockerfile and docker-compose file for automatically build

This commit is contained in:
IgorVolochay
2025-03-08 18:46:04 +03:00
parent 4c39153a75
commit 9d50d113d5
2 changed files with 45 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM python:3.9.21-alpine
WORKDIR /app
COPY . .
RUN pip3 install -r requirements.txt
EXPOSE 5000
CMD ["python3", "main.py"]