diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..067ec1d --- /dev/null +++ b/.dockerignore @@ -0,0 +1,3 @@ +venv +.env.example +Dockerfile \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ec3a254 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM python:3.11-alpine + +WORKDIR /app + +COPY . . + +RUN pip install -r requirements.txt + +CMD [ "python", "main.py" ] \ No newline at end of file