We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca2cb23 commit 91c6190Copy full SHA for 91c6190
build/docker/Dockerfile
@@ -17,6 +17,9 @@ RUN CGO_ENABLED=1 go build -ldflags "-s -w -X main.Version=${VERSION}" -o gorcon
17
FROM alpine:3.23 as runner
18
LABEL maintainer="Pavel Korotkiy <paul.korotkiy@gmail.com>"
19
20
+# hadolint ignore=DL3018
21
+RUN apk --no-cache add --update ca-certificates && apk --no-cache upgrade
22
+
23
COPY LICENSE /
24
COPY README.md /
25
COPY CHANGELOG.md /
build/docker/Dockerfile.goreleaser
@@ -1,5 +1,8 @@
1
FROM alpine:3.23
2
3
4
5
+RUN apk --no-cache upgrade
6
7
COPY rcon /rcon
8
ENTRYPOINT ["/rcon"]
0 commit comments