Skip to content

Commit 96a2863

Browse files
committed
Improve Dockerfile
1 parent 95ed86e commit 96a2863

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

.docker/alpine.docker

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@ ARG REGISTRY="docker.io"
44

55
## BUILDER #####################################################################
66

7-
FROM golang:alpine3.18 as builder
7+
FROM ${REGISTRY}/essentialkaos/golang:alpine3.18 as builder
88

99
WORKDIR /go/src/github.com/essentialkaos/sslcli
1010

1111
COPY . .
1212

13-
# hadolint ignore=DL3018
14-
RUN apk add --no-cache git make && make deps && make all
13+
RUN make deps && make all
1514

1615
## FINAL IMAGE #################################################################
1716

0 commit comments

Comments
 (0)