Skip to content
Permalink
Browse files
Add Dockerfile
  • Loading branch information
soperd committed Nov 5, 2018
1 parent 766c517 commit f979e38ac9d36a44ff1fb81f3e7689164a9ff0b7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
@@ -105,3 +105,6 @@ venv.bak/

# mypy
.mypy_cache/

# vscode
.vscode
@@ -0,0 +1,10 @@
FROM python:3.5

WORKDIR /opt/chatbot
COPY . .

VOLUME [ "/opt/chatbot" ]

RUN [ "pip", "install", "-r", "requirements.txt" ]

CMD [ "python", "run_discord.py" ]

0 comments on commit f979e38

Please sign in to comment.