Skip to content

Commit e78377d

Browse files
Update dependencies (#25)
* Used alpine:3.20.2 for base. * Added a patch for tini - krallin/tini#223.
1 parent 3b094d1 commit e78377d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.19.0 AS base
1+
FROM alpine:3.20.2 AS base
22

33
RUN apk add --no-cache \
44
build-base \
@@ -35,6 +35,8 @@ ARG TINI_VERSION=0.19.0
3535
WORKDIR /
3636
RUN wget -O "/tini-${TINI_VERSION}.tar.gz" "https://github.com/krallin/tini/archive/refs/tags/v${TINI_VERSION}.tar.gz" && \
3737
tar -xf "/tini-${TINI_VERSION}.tar.gz"
38+
RUN wget -O "/223.patch" "https://github.com/krallin/tini/commit/10479a6eef32f8e64fd5bf894dee9c7a6f21ce4c.patch" && \
39+
patch -Np1 -d "/tini-${TINI_VERSION}" -i "/223.patch"
3840

3941
WORKDIR /build
4042
RUN cmake -DCMAKE_INSTALL_PREFIX=/ "/tini-${TINI_VERSION}" && \

0 commit comments

Comments
 (0)