Skip to content

Commit

Permalink
[add] Add Dockerfile and .dockerignore
Browse files Browse the repository at this point in the history
  • Loading branch information
m-yoshinaka committed Sep 16, 2020
1 parent 3356023 commit f833833
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
model/*
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM python:3.7

WORKDIR /work

COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt

COPY . .
RUN python setup.py develop

CMD [ "/bin/bash" ]

0 comments on commit f833833

Please sign in to comment.