Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions rstudio/c9s-python-3.11/Dockerfile.cpu
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ RUN pip install --no-cache-dir -U "micropipenv[toml]"
# OS Packages needs to be installed as root
USER root

# upgrade first to avoid fixable vulnerabilities
RUN dnf -y upgrade --refresh --best --nodocs --noplugins --setopt=install_weak_deps=0 --setopt=keepcache=0 \
&& dnf clean all -y

# Install useful OS packages
RUN dnf install -y mesa-libGL skopeo && dnf clean all && rm -rf /var/cache/yum

Expand Down
4 changes: 4 additions & 0 deletions rstudio/c9s-python-3.11/Dockerfile.cuda
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ RUN pip install --no-cache-dir -U "micropipenv[toml]"
# OS Packages needs to be installed as root
USER root

# upgrade first to avoid fixable vulnerabilities
RUN dnf -y upgrade --refresh --best --nodocs --noplugins --setopt=install_weak_deps=0 --setopt=keepcache=0 \
&& dnf clean all -y

# Install useful OS packages
RUN dnf install -y mesa-libGL skopeo && dnf clean all && rm -rf /var/cache/yum

Expand Down
4 changes: 4 additions & 0 deletions rstudio/rhel9-python-3.11/Dockerfile.cpu
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ RUN pip install --no-cache-dir -U "micropipenv[toml]"
# OS Packages needs to be installed as root
USER root

# upgrade first to avoid fixable vulnerabilities
RUN dnf -y upgrade --refresh --best --nodocs --noplugins --setopt=install_weak_deps=0 --setopt=keepcache=0 \
&& dnf clean all -y

# Install useful OS packages
RUN dnf install -y mesa-libGL skopeo && dnf clean all && rm -rf /var/cache/yum

Expand Down
4 changes: 4 additions & 0 deletions rstudio/rhel9-python-3.11/Dockerfile.cuda
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ RUN pip install --no-cache-dir -U "micropipenv[toml]"
# OS Packages needs to be installed as root
USER root

# upgrade first to avoid fixable vulnerabilities
RUN dnf -y upgrade --refresh --best --nodocs --noplugins --setopt=install_weak_deps=0 --setopt=keepcache=0 \
&& dnf clean all -y

# Install useful OS packages
RUN dnf install -y mesa-libGL skopeo && dnf clean all && rm -rf /var/cache/yum

Expand Down