Port dev dockerfiles into stages

This commit is contained in:
sid palas
2023-02-21 16:18:47 -05:00
parent 7010a748e0
commit 3434051029
10 changed files with 148 additions and 41 deletions

View File

@ -0,0 +1,72 @@
# Pin specific version for stability
# Use separate stage for building image
# Use debian for easier build utilities
FROM golang:1.19-bullseye AS base-builder
# Add non root user
RUN useradd -u 1001 nonroot
WORKDIR /app
# Copy only files required to install dependencies (better layer caching)
COPY go.mod go.sum ./
# Use cache mount to speed up install of existing dependencies
RUN --mount=type=cache,target=/go/pkg/mod \
--mount=type=cache,target=/root/.cache/go-build \
go mod download
# Dev stage with additional dev dependencies installed
FROM base-builder AS dev
# Install air for hot reload & delve for debugging
RUN go install github.com/cosmtrek/air@latest && \
go install github.com/go-delve/delve/cmd/dlv@latest
COPY . .
CMD ["air", "-c", ".air.toml"]
# Production builder stage to produce the static binaries
FROM base-builder AS production-builder
COPY . .
# Compile healthcheck
RUN go build \
-ldflags="-linkmode external -extldflags -static" \
-tags netgo \
-o healthcheck \
./healthcheck/healthcheck.go
# Compile application during build rather than at runtime
# Add flags to statically link binary
RUN go build \
-ldflags="-linkmode external -extldflags -static" \
-tags netgo \
-o api-golang
# Use separate stage for deployable image
FROM scratch AS production
# Set gin mode
ENV GIN_MODE=release
WORKDIR /
# Copy the passwd file
COPY --from=production-builder /etc/passwd /etc/passwd
# Copy the healthcheck binary from the build stage
COPY --from=production-builder /app/healthcheck/healthcheck healthcheck
# Copy the app binary from the build stage
COPY --from=production-builder /app/api-golang api-golang
# Use nonroot user
USER nonroot
# Indicate expected port
EXPOSE 8080
CMD ["/api-golang"]