mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-11-10 09:12:47 +08:00
CHORE: Fix release automation (#2498)
This commit is contained in:
parent
1ea9f4ced6
commit
d6a12bc3a0
1 changed files with 5 additions and 5 deletions
10
Dockerfile
10
Dockerfile
|
@ -1,14 +1,14 @@
|
|||
# syntax = docker/dockerfile:1.4
|
||||
|
||||
FROM alpine:3.18.0@sha256:02bb6f428431fbc2809c5d1b41eab5a68350194fb508869a33cb1af4444c9b11 as RUN
|
||||
FROM alpine:3.18.2@sha256:25fad2a32ad1f6f510e528448ae1ec69a28ef81916a004d3629874104f8a7f70 as RUN
|
||||
|
||||
|
||||
# Add runtime dependencies
|
||||
# - tzdata: Go time required external dependency eg: TRANSIP and possibly others
|
||||
# - ca-certificates: Needed for https to work properly
|
||||
RUN --mount=type=cache,target=/var/cache/apk \
|
||||
apk update \
|
||||
&& apk add tzdata ca-certificates \
|
||||
&& update-ca-certificates
|
||||
RUN --mount=type=cache,target=/var/cache/apk apk update
|
||||
RUN --mount=type=cache,target=/var/cache/apk apk add --no-cache tzdata ca-certificates
|
||||
RUN --mount=type=cache,target=/var/cache/apk update-ca-certificates
|
||||
|
||||
COPY dnscontrol /usr/local/bin/
|
||||
|
||||
|
|
Loading…
Reference in a new issue