File tree Expand file tree Collapse file tree 1 file changed +11
-13
lines changed
Expand file tree Collapse file tree 1 file changed +11
-13
lines changed Original file line number Diff line number Diff line change @@ -3,28 +3,26 @@ FROM alpine:3.23.2 AS builder
33ARG VALKEY_VERSION=9.0.1
44WORKDIR /home/valkey
55
6- # hadolint ignore=DL3018
76RUN apk add --no-cache --virtual .build-deps \
8- git \
9- coreutils \
10- linux-headers \
11- musl-dev \
12- openssl-dev \
13- gcc \
14- curl \
15- make \
7+ git=2.52.0-r0 \
8+ coreutils=9.8-r1 \
9+ linux-headers=6.16.12-r0 \
10+ musl-dev=1.2.5-r21 \
11+ openssl-dev=3.5.5-r0 \
12+ gcc=15.2.0-r2 \
13+ curl=8.17.0-r1 \
14+ make=4.4.1-r3 \
1615 && curl -L https://github.com/valkey-io/valkey/archive/refs/tags/${VALKEY_VERSION}.tar.gz -o valkey.tar.gz \
1716 && tar -xzf valkey.tar.gz --strip-components=1 \
1817 && make PREFIX=/usr BUILD_TLS=yes \
1918 && make install BUILD_TLS=yes PREFIX=/home/valkey/build
2019
2120FROM alpine:3.23.2 AS valkey
2221
23- # hadolint ignore=DL3018
2422RUN apk add --no-cache \
25- openssl \
26- ca-certificates \
27- coreutils \
23+ openssl=3.5.5-r0 \
24+ ca-certificates=20251003-r0 \
25+ coreutils=9.8-r1 \
2826 && addgroup -S valkey -g 1009 \
2927 && adduser -S -G valkey valkey -u 1009 \
3028 && mkdir /etc/valkey \
You can’t perform that action at this time.
0 commit comments