Adding demo notebooks

This commit is contained in:
Christoph Schranz 2020-02-25 08:40:59 +01:00
parent f8848a73b4
commit bf7315e61d
2 changed files with 3 additions and 2 deletions

0
data/.gitkeep Normal file → Executable file
View File

View File

@ -30,7 +30,6 @@ cp $STACKS_DIR/base-notebook/start.sh .build/
cp $STACKS_DIR/base-notebook/start-notebook.sh .build/
cp $STACKS_DIR/base-notebook/start-singleuser.sh .build/
chmod 755 .build/*
chmod -R 755 data/
echo "
############################################################################
@ -71,7 +70,9 @@ echo "
" >> $DOCKERFILE
cat src/Dockerfile.usefulpackages >> $DOCKERFILE
# Copy the content from the build directory to .
# Copy the demo notebooks and change permissions
cp -r extra/Getting_Started data
chmod -R 755 data/
#cp $(find $(dirname $DOCKERFILE) -type f | grep -v $STACKS_DIR | grep -v .gitkeep) .
echo "GPU Dockerfile was generated sucessfully in file ${DOCKERFILE}."