Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
terasakisatoshi committed Jan 30, 2022
1 parent 6da376d commit 2a62f5c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion templates/with_jupyter/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,11 @@ RUN julia --threads auto -e '\
ENV JULIA_PROJECT "@."
WORKDIR /workspace/{{{PKG}}}.jl

RUN mkdir -p /workspace/{{{PKG}}}.jl/src && echo "module ML3D end" > /workspace/{{{PKG}}}.jl/src/{{{PKG}}}.jl
USER root
RUN chown -R ${NB_UID} /workspace/{{{PKG}}}.jl
USER ${USER}

RUN mkdir -p /workspace/{{{PKG}}}.jl/src && echo "module {{{PKG}}} end" > /workspace/{{{PKG}}}.jl/src/{{{PKG}}}.jl
COPY ./Project.toml /workspace/{{{PKG}}}.jl

ENV PATH=${PATH}:${HOME}/.local/bin
Expand Down

0 comments on commit 2a62f5c

Please sign in to comment.