14 lines
247 B
Docker
14 lines
247 B
Docker
FROM docker.io/golang:1.23 AS build
|
|
WORKDIR /build/
|
|
COPY go.mod go.sum .
|
|
RUN go mod download
|
|
COPY src/ .
|
|
RUN CGO_ENABLED=0 go build -o /app
|
|
|
|
FROM scratch
|
|
COPY --from=build /app /app
|
|
COPY static/ /static/
|
|
COPY html/ /html/
|
|
EXPOSE 3000
|
|
CMD ["/app"]
|