Adding Python hot fn sample

This commit is contained in:
Denis Makogon
2017-09-25 17:47:52 +03:00
parent fff03d370f
commit 4c19ad4c96
6 changed files with 60 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
FROM jjanzic/docker-python3-opencv
RUN mkdir /code
ADD . /code/
WORKDIR /code
RUN pip3 install -r requirements.txt
WORKDIR /code/
ENTRYPOINT ["python3", "func.py"]