diff --git a/.gitignore b/.gitignore index 4d95b71..ba16743 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,6 @@ __pycache__/ authorizedUsers.json config.py -Dockerfile compose.yml *.iml \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1e0eb15 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ + +FROM python:3 + +COPY ./ /usr/src/app + +WORKDIR /usr/src/app + +RUN pip install --no-cache-dir -r /usr/src/app/requirements.txt + +CMD [ "python", "./bot.py" ] \ No newline at end of file