commit def515c478920870175f5990fb7ade3a3de10cf5 parent 479ca87de8cd21b661c3d81ae839c064cdb8eaea Author: Vetle Haflan <vetle@haflan.dev> Date: Wed, 27 Jan 2021 00:31:45 +0100 Add multistage Dockerfile Diffstat:
A | Dockerfile | | | 32 | ++++++++++++++++++++++++++++++++ |
1 file changed, 32 insertions(+), 0 deletions(-)
diff --git a/Dockerfile b/Dockerfile @@ -0,0 +1,32 @@ +ARG build_goarch=amd64 +ARG build_goarm=8 + +### Builder stage +FROM golang:alpine AS builder + +RUN apk update && apk add --no-cache git npm +COPY . /src/ + +# Build static website files +WORKDIR /src/ui +RUN mkdir -p /static +RUN npm install; \ + npm run build; + +# Build binary +WORKDIR /src/ +ENV CGO_ENABLED=0 +ENV GOOS=linux +ENV GOARCH=$build_goarch +ENV GOARM=$build_goarm +RUN go get -d ./... ; \ + go build -ldflags="-w -s" -o /go/bin/lipre . + +### Production image +FROM scratch +COPY --from=builder /go/bin/lipre /lipre +COPY --from=builder /src/ui/dist /ui/dist +ENTRYPOINT ["/lipre"] +# Replace the above with this when lipre is modified to take static dir arg +#COPY --from=builder /src/ui/dist /static +#ENTRYPOINT ["/lipre", "-s", "/static"] # uncomment when implemented