[+] Docker support

This commit is contained in:
2024-01-13 14:52:59 +03:00
parent a2bed9be1f
commit fb7869a64c
2 changed files with 13 additions and 2 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.12.1-alpine
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY ./src .
CMD [ "python", "./main.py" ]