Compare commits

...

No commits in common. "85aff276b78c2204d3597990c7bf39d05ef86092" and "f1fdc7b498f485be48ce9ddff9e1133a0998f513" have entirely different histories.

5 changed files with 21 additions and 8 deletions

View File

@ -1,6 +0,0 @@
FROM jupyter/scipy-notebook
COPY --chown=1000 postBuild /tmp/
RUN /tmp/postBuild \
&& rm /tmp/postBuild

11
Dockerfile.local Normal file
View File

@ -0,0 +1,11 @@
FROM jupyter/minimal-notebook
COPY --chown=1000 environment.yml /tmp/
COPY --chown=1000 postBuild /tmp/
RUN conda env create -f /tmp/environment.yml \
&& conda activate video-analysis \
&& rm /tmp/environment.yml
RUN /tmp/postBuild \
&& rm /tmp/postBuild

View File

@ -1,3 +1,3 @@
# video analysis
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/git/https%3A%2F%2Fgit.sbruder.de%2Fsimon%2Fvideo-analysis/master?filepath=%2Flab)
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/git/https%3A%2F%2Fgit.sbruder.de%2Fsimon%2Fvideo-analysis/master?urlpath=lab/tree/ipynb)

View File

@ -1,7 +1,9 @@
version: '3'
services:
jupyter:
build: .
build:
context: .
dockerfile: Dockerfile.local
volumes:
- ./:/home/jovyan/work/
ports:

6
environment.yml Normal file
View File

@ -0,0 +1,6 @@
name: video-analysis
dependencies:
- matplotlib
- numpy
- pandas
- scipy