-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
36 lines (24 loc) · 757 Bytes
/
Copy pathDockerfile
File metadata and controls
36 lines (24 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Stage 1: Build the Go application
FROM --platform=$BUILDPLATFORM golang:1.24-alpine AS builder
WORKDIR /app
# Install build dependencies
RUN apk add --no-cache git
# Copy go.mod first to define the module
COPY go.mod ./
# Copy all source code, including subdirectories
COPY . .
# Build the application for both architectures
ARG TARGETARCH
RUN CGO_ENABLED=0 GOOS=linux GOARCH=$TARGETARCH go build -o errorpage
# Stage 2: Create the runtime image
FROM alpine:3.20
WORKDIR /app
# Copy the built binary and UI files from the builder stage
COPY --from=builder /app .
# Ensure the binary is executable
RUN chmod +x errorpage
# Install runtime dependencies
RUN apk add --no-cache ca-certificates
EXPOSE 8080
# Run the application
CMD ["./errorpage"]