26 lines
No EOL
546 B
Docker
26 lines
No EOL
546 B
Docker
FROM golang AS builder
|
|
|
|
WORKDIR /src
|
|
# Download dependencies
|
|
COPY go.mod go.sum /
|
|
RUN go mod download
|
|
|
|
# Add source code
|
|
COPY . .
|
|
RUN CGO_ENABLED=0 go build -o main .
|
|
|
|
# Multi-Stage production build
|
|
FROM alpine AS production
|
|
RUN apk --no-cache add ca-certificates
|
|
|
|
WORKDIR /app
|
|
# Retrieve the binary from the previous stage
|
|
COPY --from=builder /src/main .
|
|
# Copy static template files
|
|
COPY templates templates
|
|
# Copy frontend
|
|
COPY public public
|
|
# Expose port
|
|
EXPOSE 3000
|
|
# Set the binary as the entrypoint of the container
|
|
CMD ["./main", "serve"] |