Skip to content

Commit

Permalink
Dockerfile fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Glusa <[email protected]>
  • Loading branch information
cgcgcg committed Jan 16, 2025
1 parent 5afeb2c commit 3245778
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# AUTHOR: Christian Glusa

# Base docker image
FROM debian:stable
FROM docker.io/library/debian:stable
LABEL maintainer Christian Glusa

# install packages needed for build
Expand Down
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ set -e

mkdir -p ~/examples
mkdir -p ~/drivers
cp -r --update=none /pynucleus/examples/* ~/examples
cp -r --update=none /pynucleus/drivers/* ~/drivers
cp -r -u /pynucleus/examples/* ~/examples
cp -r -u /pynucleus/drivers/* ~/drivers

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

0 comments on commit 3245778

Please sign in to comment.