[+] Dockerfile and docker compose config

This commit is contained in:
Azalea Gui
2023-01-03 04:04:55 -05:00
parent 9091fd2f0f
commit 849a414d3e
3 changed files with 20 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM python:3.11-alpine
WORKDIR /app
COPY requirements.txt /app
RUN pip install -r requirements.txt
CMD ["python3", "-u", "/app/main.py"]