Skip to content

Commit

Permalink
Merge pull request #194 from hyperspike/valkey-container
Browse files Browse the repository at this point in the history
chore(deps): Fix valkey alpine deps
  • Loading branch information
dmolik authored Feb 11, 2025
2 parents aa95d80 + 99cc669 commit 42fd9bd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Dockerfile.valkey
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine:3.21.2 AS builder

ARG VALKEY_VERSION=8.0.1
ARG VALKEY_VERSION=8.0.2

WORKDIR /home/valkey

Expand All @@ -9,9 +9,9 @@ RUN apk add --no-cache --virtual .build-deps \
coreutils=9.5-r2 \
linux-headers=6.6-r1 \
musl-dev=1.2.5-r8 \
openssl-dev=3.3.2-r4 \
openssl-dev=3.3.3-r0 \
gcc=14.2.0-r4 \
curl=8.11.1-r0 \
curl=8.11.1-r1 \
make=4.4.1-r2 \
&& curl -L https://github.com/valkey-io/valkey/archive/refs/tags/${VALKEY_VERSION}.tar.gz -o valkey.tar.gz \
&& tar -xzf valkey.tar.gz --strip-components=1 \
Expand All @@ -21,7 +21,7 @@ RUN apk add --no-cache --virtual .build-deps \
FROM alpine:3.21.2 AS valkey

RUN apk add --no-cache \
openssl=3.3.2-r4 \
openssl=3.3.3-r0 \
ca-certificates=20241121-r1 \
&& addgroup -S valkey -g 1009 \
&& adduser -S -G valkey valkey -u 1009 \
Expand Down
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ kind: Kustomization
images:
- name: controller
newName: localhost:5000/valkey-operator
newTag: "31"
newTag: "3"

0 comments on commit 42fd9bd

Please sign in to comment.