forked from swan-cern/jupyter-images
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- PATH bug fixed (injected in userconfig.sh) - PYTHONPATH being unset - internal ipykernel installed
- Loading branch information
1 parent
8805d61
commit 2f7205a
Showing
3 changed files
with
29 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,6 @@ LABEL maintainer="[email protected]" | |
ARG NB_UID="1000" | ||
ARG BUILD_TAG=daily | ||
ENV VERSION_DOCKER_IMAGE=$BUILD_TAG | ||
ENV PATH="/srv/singleuser/bin:${PATH}" | ||
|
||
RUN echo "Building swan-cern image with tag ${VERSION_DOCKER_IMAGE} from parent tag ${VERSION_PARENT}." | ||
|
||
|
@@ -42,9 +41,9 @@ USER root | |
|
||
# Crate a new bin path for allowing the user to run it with an alias | ||
# Add script for virtual environment creation | ||
RUN mkdir /srv/singleuser/bin | ||
RUN mv /srv/singleuser/makenv.sh /srv/singleuser/bin/makenv | ||
RUN chmod u+x /srv/singleuser/bin/makenv | ||
RUN mkdir /srv/singleuser/bin && \ | ||
mv /srv/singleuser/makenv.sh /srv/singleuser/bin/makenv && \ | ||
chmod +x /srv/singleuser/bin/makenv | ||
|
||
# HTCondor requirements | ||
RUN dnf install -y \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters