Skip to content

Commit

Permalink
Added dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
foorschtbar committed Jul 27, 2024
1 parent 5140edd commit 13ffd90
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
__pycache__/
authorizedUsers.json
config.py
Dockerfile
compose.yml

*.iml
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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" ]

0 comments on commit 13ffd90

Please sign in to comment.