Skip to content

Commit

Permalink
Add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
thisisrandy committed Nov 14, 2019
1 parent 396c00d commit aebb33f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Dockerfile
@@ -0,0 +1,14 @@
FROM python:3.6-slim-stretch

RUN apt update
RUN apt install -y python3-dev gcc

ADD requirements.txt requirements.txt
ADD classifer.py classifer.py
ADD bear-classifier.pkl bear-classifier.pkl

RUN pip install -r requirements.txt

EXPOSE 8008

RUN python classifer.py

0 comments on commit aebb33f

Please sign in to comment.