www-jmbit-de/Dockerfile

15 lines
426 B
Docker
Raw Permalink Normal View History

2024-12-20 13:35:30 +01:00
FROM docker.io/library/golang:alpine AS builder
RUN apk update \
&& apk add --no-cache git \
&& apk add --no-cache --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community hugo
WORKDIR $GOPATH/src/www-jmbit-de
COPY . .
RUN go get -d -v
2024-12-20 13:35:30 +01:00
RUN cd hugo && hugo
2024-11-26 09:25:38 +01:00
RUN go build -a -installsuffix cgo -ldflags="-w -s" -o /go/bin/www
FROM scratch
COPY --from=builder /go/bin/www /go/bin/www
ENTRYPOINT ["/go/bin/www"]