Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
shiny-k8s-example
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hub
shiny-k8s-example
Merge requests
!9
lighter image, add link to doc for base image
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
lighter image, add link to doc for base image
lighter-r-image
into
base-r
Overview
0
Commits
2
Pipelines
4
Changes
1
Merged
Bryan BRANCOTTE
requested to merge
lighter-r-image
into
base-r
1 year ago
Overview
0
Commits
2
Pipelines
4
Changes
1
Expand
0
0
Merge request reports
Compare
base-r
version 1
ea502912
1 year ago
base-r (base)
and
latest version
latest version
c5fe7e04
2 commits,
1 year ago
version 1
ea502912
1 commit,
1 year ago
1 file
+
8
−
8
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Dockerfile
+
8
−
8
Options
# Build image from the base image, previously configured for you
# Build image from the base image, previously configured for you
# F
ROM registry-gitlab.pasteur.fr/hub/shiny-k8s/r:3.6.3
# F
ull list of images can be found at
#
FROM registry-gitlab
.pasteur.fr/
hub/
shiny-k8s/
r:4.2.3
#
https://hub.pages
.pasteur.fr/shiny-k8s/
user_guide/configure_image.html#image-list
FROM
registry-gitlab.pasteur.fr/hub/shiny-k8s/r:4.3.1
FROM
registry-gitlab.pasteur.fr/hub/shiny-k8s/r:4.3.1
--1.5.22.1017
# Add workdir information
# Add workdir information
WORKDIR
/srv/shiny-server/
WORKDIR
/srv/shiny-server/
# Install additional dependencies, comment the block if you
don't
have one
# Install additional dependencies,
un
comment the block if you have one
, and edit/duplicate line 12
RUN
apt-get update
\
#
RUN apt-get update \
&&
apt-get
install
-y
\
#
&& apt-get install -y \
wget
\
#
your-system-dependency
\
&&
rm
-rf
/var/lib/apt/lists/
*
#
&& rm -rf /var/lib/apt/lists/*
# Copy your dependencies, destination filename must be "packages_to_install.csv"
# Copy your dependencies, destination filename must be "packages_to_install.csv"
COPY
./my_packages_to_install.csv /opt/scripts/packages_to_install.csv
COPY
./my_packages_to_install.csv /opt/scripts/packages_to_install.csv
Loading