auth-api/Dockerfile

38 lines
748 B
Docker
Raw Permalink Normal View History

2024-02-11 17:07:40 +01:00
FROM golang:1.22.0-alpine3.19 AS builder
2021-01-05 17:55:52 +01:00
# Install missing pkgs
RUN apk add --no-cache git
# Set necessary environmet variables needed for our image
ENV GO111MODULE=on \
CGO_ENABLED=0 \
GOOS=linux \
GOARCH=amd64
# Set workdir in GOPATH
2024-02-11 16:28:13 +01:00
WORKDIR $GOPATH/src/gitea.larvit.se/power-plan/auth
2021-01-05 17:55:52 +01:00
# Copy and download dependency using go mod
COPY go.mod .
COPY go.sum .
RUN go mod download
# Copy the source code
COPY ./src ./src
# Build the application
RUN go build -o /build/main ./src
# Move to /dist directory as the place for resulting binary folder
WORKDIR /dist
# Copy binary from build to main folder
RUN cp /build/main .
# Build a small image
FROM scratch
COPY --from=builder /dist/main /
# Command to run
ENTRYPOINT ["/main"]