kopia lustrzana https://github.com/jupyterhub/repo2docker
Merge pull request #975 from tomyun/repodir
commit
035574be55
|
@ -113,6 +113,7 @@ COPY --chown={{ user }}:{{ user }} {{ src }} {{ dst }}
|
||||||
ARG REPO_DIR=${HOME}
|
ARG REPO_DIR=${HOME}
|
||||||
ENV REPO_DIR ${REPO_DIR}
|
ENV REPO_DIR ${REPO_DIR}
|
||||||
WORKDIR ${REPO_DIR}
|
WORKDIR ${REPO_DIR}
|
||||||
|
RUN chown ${NB_USER}:${NB_USER} ${REPO_DIR}
|
||||||
|
|
||||||
# We want to allow two things:
|
# We want to allow two things:
|
||||||
# 1. If there's a .local/bin directory in the repo, things there
|
# 1. If there's a .local/bin directory in the repo, things there
|
||||||
|
|
|
@ -13,5 +13,8 @@ assert sys.executable.startswith("/srv/conda/"), sys.executable
|
||||||
assert os.path.exists("/srv/repo/verify")
|
assert os.path.exists("/srv/repo/verify")
|
||||||
assert os.path.abspath(__file__) == "/srv/repo/verify"
|
assert os.path.abspath(__file__) == "/srv/repo/verify"
|
||||||
|
|
||||||
|
# Repo should be writable
|
||||||
|
assert os.access("/srv/repo", os.W_OK)
|
||||||
|
|
||||||
# We should be able to import the package in environment.yml
|
# We should be able to import the package in environment.yml
|
||||||
import numpy
|
import numpy
|
||||||
|
|
Ładowanie…
Reference in New Issue