We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b094d1 commit e78377dCopy full SHA for e78377d
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM alpine:3.19.0 AS base
+FROM alpine:3.20.2 AS base
2
3
RUN apk add --no-cache \
4
build-base \
@@ -35,6 +35,8 @@ ARG TINI_VERSION=0.19.0
35
WORKDIR /
36
RUN wget -O "/tini-${TINI_VERSION}.tar.gz" "https://github.com/krallin/tini/archive/refs/tags/v${TINI_VERSION}.tar.gz" && \
37
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"
40
41
WORKDIR /build
42
RUN cmake -DCMAKE_INSTALL_PREFIX=/ "/tini-${TINI_VERSION}" && \
0 commit comments