Skip to content
This repository has been archived by the owner on Oct 19, 2022. It is now read-only.

Commit

Permalink
Fix Dockerfile + Add .dockerignore
Browse files Browse the repository at this point in the history
  • Loading branch information
FriggaHel committed Jan 23, 2017
1 parent 4d84a4c commit 22a6225
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# GitIgnore
__pycache__
venv
*.pyc
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ FROM python:3.6
COPY . /app/
WORKDIR /app
RUN pip install -r requirements.txt
ENTRYPOINT ["/app/run"]
ENTRYPOINT ["python", "/app/app.py"]

0 comments on commit 22a6225

Please sign in to comment.