summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: a5d236ccf992e3f746ebbff36267d6c8955df6f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# build
FROM golang:1.25.4-alpine AS builder
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -o main ./cmd/main.go

# run
FROM alpine:latest
WORKDIR /app
COPY --from=builder /app/main .
COPY --from=builder /app/views ./views
COPY --from=builder /app/css ./css
COPY --from=builder /app/js ./js

EXPOSE 8080
CMD ["./main"]