SimpleTutorialHosting/Dockerfile
Mitchell Thompson 56635fc145 first commit
2024-10-27 07:12:56 -04:00

21 lines
290 B
Docker

FROM golang:1.23-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/server/main.go
FROM alpine:latest
WORKDIR /app
COPY --from=builder /app/main .
COPY templates/ templates/
EXPOSE 8080
CMD ["./main"]