We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5045d4 commit a93bb73Copy full SHA for a93bb73
1 file changed
.docker/alpine.docker
@@ -10,8 +10,6 @@ WORKDIR /go/src/github.com/essentialkaos/sslcli
10
11
COPY . .
12
13
-ENV GO111MODULE=auto
14
-
15
# hadolint ignore=DL3018
16
RUN apk add --no-cache git make && make deps && make all
17
@@ -27,7 +25,8 @@ LABEL org.opencontainers.image.title="sslcli" \
27
25
org.opencontainers.image.url="https://kaos.sh/sslcli" \
28
26
org.opencontainers.image.source="https://github.com/essentialkaos/sslcli"
29
30
-COPY --from=builder /go/src/github.com/essentialkaos/sslcli/sslcli /usr/bin/
+COPY --from=builder /go/src/github.com/essentialkaos/sslcli/sslcli \
+ /usr/bin/
31
32
33
RUN apk add --no-cache ca-certificates
0 commit comments