We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95ed86e commit 96a2863Copy full SHA for 96a2863
1 file changed
.docker/alpine.docker
@@ -4,14 +4,13 @@ ARG REGISTRY="docker.io"
4
5
## BUILDER #####################################################################
6
7
-FROM golang:alpine3.18 as builder
+FROM ${REGISTRY}/essentialkaos/golang:alpine3.18 as builder
8
9
WORKDIR /go/src/github.com/essentialkaos/sslcli
10
11
COPY . .
12
13
-# hadolint ignore=DL3018
14
-RUN apk add --no-cache git make && make deps && make all
+RUN make deps && make all
15
16
## FINAL IMAGE #################################################################
17
0 commit comments