We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5452530 commit f8bae73Copy full SHA for f8bae73
.github/workflows/build.yml
@@ -15,7 +15,7 @@ env:
15
jobs:
16
build:
17
if: github.actor == 'ammnt'
18
- runs-on: ubuntu-latest
+ runs-on: ubuntu-24.04
19
permissions:
20
contents: write
21
packages: write
Dockerfile
@@ -1,7 +1,8 @@
1
ARG BASE_VERSION=3.21.0
2
-FROM docker.io/library/alpine:${BASE_VERSION}
3
-ENV OPENSSL_BRANCH=master
4
-ENV APP_BRANCH=release-1.27.4
+ARG BASE_HASH=21dc6063fd678b478f57c0e13f47560d0ea4eeba26dfc947b2a4f81f686b9f45
+FROM docker.io/library/alpine:${BASE_VERSION}@sha256:${BASE_HASH}
+ARG OPENSSL_BRANCH=master
5
+ARG APP_BRANCH=release-1.27.4
6
RUN NB_CORES="${BUILD_CORES-$(getconf _NPROCESSORS_CONF)}" \
7
&& apk -U upgrade && apk add --no-cache \
8
openssl \
0 commit comments