Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
J
Jupyter Docker Stacks
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
Jupyter Docker Stacks
Commits
414b5d74
Commit
414b5d74
authored
Jan 29, 2020
by
Peter Parente
Committed by
GitHub
Jan 29, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #991 from jgwerner/update-dockerfile
chore: Replace ADD with COPY
parents
29e06966
65825553
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
base-notebook/Dockerfile
base-notebook/Dockerfile
+3
-3
No files found.
base-notebook/Dockerfile
View file @
414b5d74
...
...
@@ -42,8 +42,8 @@ ENV CONDA_DIR=/opt/conda \
ENV
PATH=$CONDA_DIR/bin:$PATH \
HOME=/home/$NB_USER
#
Add
a script that we will use to correct permissions after running certain commands
ADD
fix-permissions /usr/local/bin/fix-permissions
#
Copy
a script that we will use to correct permissions after running certain commands
COPY
fix-permissions /usr/local/bin/fix-permissions
RUN
chmod
a+rx /usr/local/bin/fix-permissions
# Enable prompt color in the skeleton .bashrc before creating the default NB_USER
...
...
@@ -124,7 +124,7 @@ EXPOSE 8888
ENTRYPOINT
["tini", "-g", "--"]
CMD
["start-notebook.sh"]
#
Add
local files as late as possible to avoid cache busting
#
Copy
local files as late as possible to avoid cache busting
COPY
start.sh /usr/local/bin/
COPY
start-notebook.sh /usr/local/bin/
COPY
start-singleuser.sh /usr/local/bin/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment