Added docker config

This commit is contained in:
2023-11-29 18:51:16 +03:00
parent c8229ffbed
commit f63954e8ff
2 changed files with 12 additions and 0 deletions

3
.dockerignore Normal file
View File

@@ -0,0 +1,3 @@
venv
.env.example
Dockerfile

9
Dockerfile Normal file
View File

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