Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docker images to reduce security vulnerabilities #211

Open
wants to merge 15 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 6 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
2 changes: 1 addition & 1 deletion docker/estimate/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM r-base:4.0.3
FROM ghcr.io/r-hub/r-minimal/r-minimal:4.4.2
Fixed Show fixed Hide fixed
Fixed Show fixed Hide fixed
Fixed Show fixed Hide fixed
Fixed Show fixed Hide fixed

RUN R -e 'install.packages("estimate", repos="http://r-forge.r-project.org", dependencies=TRUE)'
2 changes: 1 addition & 1 deletion docker/estimate/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "estimate",
"version": "1.1.1"
"version": "1.1.2"
}
2 changes: 1 addition & 1 deletion docker/python-plotting/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.13.0
FROM python:3.13.1-alpine

RUN pip install pandas numpy matplotlib seaborn plotly

Expand Down
2 changes: 1 addition & 1 deletion docker/python-plotting/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "python-plotting",
"version": "1.2.1"
"version": "1.2.2"
}
7 changes: 6 additions & 1 deletion docker/umap/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
FROM python:3.12.7
FROM python:3.13.1-alpine

# Downstream requires llvm15, but that is out-of-date
# llvm15 installs with the -15 suffix, so we need to symlink
RUN apk add build-base llvm15-dev \
&& ln -s /usr/bin/llvm-config-15 /usr/bin/llvm-config

RUN pip install umap-learn==0.5.7 pandas

Expand Down
2 changes: 1 addition & 1 deletion docker/umap/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "umap",
"version": "0.5.7",
"revision": "3"
"revision": "4"
}
Loading