Files
fn-serverless/examples/tutorial/hotfunctions/http/python/Dockerfile
2017-09-25 17:48:39 +03:00

10 lines
166 B
Docker

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