46 lines
845 B
Docker
46 lines
845 B
Docker
# Build stage
|
|
FROM golang:1.25-alpine AS builder
|
|
|
|
WORKDIR /app
|
|
|
|
# Install sqlc
|
|
RUN go install github.com/sqlc-dev/sqlc/cmd/sqlc@latest
|
|
|
|
# Install templ
|
|
RUN go install github.com/a-h/templ/cmd/templ@latest
|
|
|
|
# Copy source code
|
|
COPY . .
|
|
|
|
# Download dependencies
|
|
RUN go mod tidy
|
|
|
|
# Generate sqlc code
|
|
RUN sqlc generate
|
|
|
|
# Generate templ code
|
|
RUN templ generate
|
|
|
|
# Build the application
|
|
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o main ./cmd/server
|
|
|
|
# Final stage
|
|
FROM alpine:latest
|
|
|
|
RUN apk --no-cache add ca-certificates
|
|
WORKDIR /root/
|
|
|
|
# Copy the binary from builder stage
|
|
COPY --from=builder /app/main .
|
|
|
|
# Copy migrations (if needed for initialization)
|
|
COPY --from=builder /app/migrations ./migrations
|
|
|
|
# Copy templates
|
|
COPY --from=builder /app/templates ./templates
|
|
|
|
# Expose port
|
|
EXPOSE 8765
|
|
|
|
# Run the binary
|
|
CMD ["./main"] |