This repository has been archived on 2019-12-02. You can view files and clone it, but cannot push or open issues/pull-requests.
video-analysis/Dockerfile.local

11 lines
229 B
Docker
Raw Normal View History

2019-11-10 15:31:06 +01:00
FROM jupyter/minimal-notebook
COPY --chown=1000 requirements.txt /tmp/
COPY --chown=1000 postBuild /tmp/
RUN pip install -r /tmp/requirements.txt \
&& rm /tmp/requirements.txt
RUN /tmp/postBuild \
&& rm /tmp/postBuild