From d243b30606673baec988c5cd0a31e450f2794ca4 Mon Sep 17 00:00:00 2001 From: Mikkel Thestrup Date: Sat, 6 Dec 2025 23:20:13 +0100 Subject: Containerize the webserver --- Dockerfile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a5d236c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,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"] -- cgit v1.2.3-70-g09d2