Skip to content

Commit 3245778

Browse files
committed
Dockerfile fixes
Signed-off-by: Christian Glusa <[email protected]>
1 parent 5afeb2c commit 3245778

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# AUTHOR: Christian Glusa
44

55
# Base docker image
6-
FROM debian:stable
6+
FROM docker.io/library/debian:stable
77
LABEL maintainer Christian Glusa
88

99
# install packages needed for build

entrypoint.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ set -e
33

44
mkdir -p ~/examples
55
mkdir -p ~/drivers
6-
cp -r --update=none /pynucleus/examples/* ~/examples
7-
cp -r --update=none /pynucleus/drivers/* ~/drivers
6+
cp -r -u /pynucleus/examples/* ~/examples
7+
cp -r -u /pynucleus/drivers/* ~/drivers
88

99
jupyter notebook --port=8889 --no-browser --allow-root --ip=0.0.0.0 \
1010
--NotebookApp.token='' --NotebookApp.password='' \

0 commit comments

Comments
 (0)