Skip to content

Commit

Permalink
build: update minio versions to avoid CVE-2024-45337
Browse files Browse the repository at this point in the history
  • Loading branch information
spwoodcock committed Dec 19, 2024
1 parent 1b1b1fb commit 7c3cd4f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ s3:
replicas: 1
image:
repository: quay.io/minio/minio
tag: RELEASE.2024-10-13T13-34-11Z
tag: RELEASE.2024-12-18T13-15-44Z
environment:
MINIO_BROWSER: "off"
mountPath: /mnt/data
Expand Down
2 changes: 1 addition & 1 deletion compose.development.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ services:
restart: "on-failure:2"

s3:
image: "docker.io/minio/minio:${MINIO_TAG:-RELEASE.2024-10-13T13-34-11Z}"
image: "docker.io/minio/minio:${MINIO_TAG:-RELEASE.2024-12-18T13-15-44Z}"
environment:
MINIO_ROOT_USER: ${S3_ACCESS_KEY}
MINIO_ROOT_PASSWORD: ${S3_SECRET_KEY}
Expand Down
2 changes: 1 addition & 1 deletion compose.main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ services:
restart: "on-failure:2"

s3:
image: "docker.io/minio/minio:${MINIO_TAG:-RELEASE.2024-10-13T13-34-11Z}"
image: "docker.io/minio/minio:${MINIO_TAG:-RELEASE.2024-12-18T13-15-44Z}"
environment:
MINIO_ROOT_USER: ${S3_ACCESS_KEY}
MINIO_ROOT_PASSWORD: ${S3_SECRET_KEY}
Expand Down
2 changes: 1 addition & 1 deletion compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ services:
restart: "on-failure:2"

s3:
image: "docker.io/minio/minio:${MINIO_TAG:-RELEASE.2024-10-13T13-34-11Z}"
image: "docker.io/minio/minio:${MINIO_TAG:-RELEASE.2024-12-18T13-15-44Z}"
environment:
MINIO_ROOT_USER: ${S3_ACCESS_KEY:-fmtm}
MINIO_ROOT_PASSWORD: ${S3_SECRET_KEY:-somelongpassword}
Expand Down
3 changes: 1 addition & 2 deletions src/backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#
ARG PYTHON_IMG_TAG=3.12
ARG UV_IMG_TAG=0.5.2
ARG MINIO_TAG=${MINIO_TAG:-RELEASE.2024-10-13T13-34-11Z}
ARG MINIO_TAG=${MINIO_TAG:-RELEASE.2024-12-18T13-15-44Z}
FROM ghcr.io/astral-sh/uv:${UV_IMG_TAG} AS uv
FROM docker.io/minio/minio:${MINIO_TAG} AS minio

Expand Down Expand Up @@ -159,7 +159,6 @@ RUN --mount=type=cache,target=/root/.cache <<EOT
uv sync \
--project /_lock \
--locked \
--no-dev \
--no-install-project \
--group debug \
--group test \
Expand Down

0 comments on commit 7c3cd4f

Please sign in to comment.