Corrected Dockerfile

main
Johannes Bülow 2024-12-20 13:35:30 +01:00
parent ac51638665
commit 2b0901a982
Signed by: jmb
GPG Key ID: B56971CF7B8F83A6
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM golang:alpine AS builder FROM docker.io/library/golang:alpine AS builder
RUN apk update \ RUN apk update \
&& apk add --no-cache git \ && apk add --no-cache git \
&& apk add --no-cache --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community hugo && apk add --no-cache --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community hugo
@ -6,7 +6,7 @@ RUN apk update \
WORKDIR $GOPATH/src/www-jmbit-de WORKDIR $GOPATH/src/www-jmbit-de
COPY . . COPY . .
RUN go get -d -v RUN go get -d -v
RUN hugo --minify RUN cd hugo && hugo
RUN go build -a -installsuffix cgo -ldflags="-w -s" -o /go/bin/www RUN go build -a -installsuffix cgo -ldflags="-w -s" -o /go/bin/www
FROM scratch FROM scratch