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
1d763bba
Commit
1d763bba
authored
Oct 19, 2018
by
graemes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Convert FROM specification to ARG (#727)
parent
6d2a0534
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
16 additions
and
9 deletions
+16
-9
all-spark-notebook/Dockerfile
all-spark-notebook/Dockerfile
+2
-1
base-notebook/Dockerfile
base-notebook/Dockerfile
+2
-1
datascience-notebook/Dockerfile
datascience-notebook/Dockerfile
+2
-1
minimal-notebook/Dockerfile
minimal-notebook/Dockerfile
+2
-2
pyspark-notebook/Dockerfile
pyspark-notebook/Dockerfile
+2
-1
r-notebook/Dockerfile
r-notebook/Dockerfile
+2
-1
scipy-notebook/Dockerfile
scipy-notebook/Dockerfile
+2
-1
tensorflow-notebook/Dockerfile
tensorflow-notebook/Dockerfile
+2
-1
No files found.
all-spark-notebook/Dockerfile
View file @
1d763bba
# Copyright (c) Jupyter Development Team.
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
# Distributed under the terms of the Modified BSD License.
FROM
jupyter/pyspark-notebook
ARG
BASE_CONTAINER=jupyter/pyspark-notebook
FROM
$BASE_CONTAINER
LABEL
maintainer="Jupyter Project <jupyter@googlegroups.com>"
LABEL
maintainer="Jupyter Project <jupyter@googlegroups.com>"
...
...
base-notebook/Dockerfile
View file @
1d763bba
...
@@ -3,7 +3,8 @@
...
@@ -3,7 +3,8 @@
# Ubuntu 18.04 (bionic) from 2018-05-26
# Ubuntu 18.04 (bionic) from 2018-05-26
# https://github.com/docker-library/official-images/commit/aac6a45b9eb2bffb8102353c350d341a410fb169
# https://github.com/docker-library/official-images/commit/aac6a45b9eb2bffb8102353c350d341a410fb169
FROM
ubuntu:bionic-20180526@sha256:c8c275751219dadad8fa56b3ac41ca6cb22219ff117ca98fe82b42f24e1ba64e
ARG
BASE_CONTAINER=ubuntu:bionic-20180526@sha256:c8c275751219dadad8fa56b3ac41ca6cb22219ff117ca98fe82b42f24e1ba64e
FROM
$BASE_CONTAINER
LABEL
maintainer="Jupyter Project <jupyter@googlegroups.com>"
LABEL
maintainer="Jupyter Project <jupyter@googlegroups.com>"
...
...
datascience-notebook/Dockerfile
View file @
1d763bba
# Copyright (c) Jupyter Development Team.
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
# Distributed under the terms of the Modified BSD License.
FROM
jupyter/scipy-notebook
ARG
BASE_CONTAINER=jupyter/scipy-notebook
FROM
$BASE_CONTAINER
LABEL
maintainer="Jupyter Project <jupyter@googlegroups.com>"
LABEL
maintainer="Jupyter Project <jupyter@googlegroups.com>"
...
...
minimal-notebook/Dockerfile
View file @
1d763bba
# Copyright (c) Jupyter Development Team.
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
# Distributed under the terms of the Modified BSD License.
ARG
BASE_CONTAINER=jupyter/base-notebook
FROM
jupyter/base-notebook
FROM
$BASE_CONTAINER
LABEL
maintainer="Jupyter Project <jupyter@googlegroups.com>"
LABEL
maintainer="Jupyter Project <jupyter@googlegroups.com>"
...
...
pyspark-notebook/Dockerfile
View file @
1d763bba
# Copyright (c) Jupyter Development Team.
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
# Distributed under the terms of the Modified BSD License.
FROM
jupyter/scipy-notebook
ARG
BASE_CONTAINER=jupyter/scipy-notebook
FROM
$BASE_CONTAINER
LABEL
maintainer="Jupyter Project <jupyter@googlegroups.com>"
LABEL
maintainer="Jupyter Project <jupyter@googlegroups.com>"
...
...
r-notebook/Dockerfile
View file @
1d763bba
# Copyright (c) Jupyter Development Team.
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
# Distributed under the terms of the Modified BSD License.
FROM
jupyter/minimal-notebook
ARG
BASE_CONTAINER=jupyter/minimal-notebook
FROM
$BASE_CONTAINER
LABEL
maintainer="Jupyter Project <jupyter@googlegroups.com>"
LABEL
maintainer="Jupyter Project <jupyter@googlegroups.com>"
...
...
scipy-notebook/Dockerfile
View file @
1d763bba
# Copyright (c) Jupyter Development Team.
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
# Distributed under the terms of the Modified BSD License.
FROM
jupyter/minimal-notebook
ARG
BASE_CONTAINER=jupyter/minimal-notebook
FROM
$BASE_CONTAINER
LABEL
maintainer="Jupyter Project <jupyter@googlegroups.com>"
LABEL
maintainer="Jupyter Project <jupyter@googlegroups.com>"
...
...
tensorflow-notebook/Dockerfile
View file @
1d763bba
# Copyright (c) Jupyter Development Team.
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
# Distributed under the terms of the Modified BSD License.
FROM
jupyter/scipy-notebook
ARG
BASE_CONTAINER=jupyter/scipy-notebook
FROM
$BASE_CONTAINER
LABEL
maintainer="Jupyter Project <jupyter@googlegroups.com>"
LABEL
maintainer="Jupyter Project <jupyter@googlegroups.com>"
...
...
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