Skip to content

Commit

Permalink
Improve dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
andyone committed Sep 24, 2024
1 parent 258178b commit 6ced9b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .docker/alpine.docker
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ ARG REGISTRY="docker.io"

## BUILDER #####################################################################

FROM golang:alpine3.20 as builder
FROM ${REGISTRY}/essentialkaos/golang:alpine3.20 as builder

WORKDIR /go/src/github.com/essentialkaos/rsz

COPY . .

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

## FINAL IMAGE #################################################################

Expand Down

0 comments on commit 6ced9b5

Please sign in to comment.