Co-authored-by: stcb <21@stcb.cc> Reviewed-on: icing/G-EIP-700-TLS-7-1-eip-stephane.corbiere#4 Co-authored-by: ange <ange@yw5n.com> Co-committed-by: ange <ange@yw5n.com>
16 lines
275 B
Docker
16 lines
275 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 .
|
|
COPY html/ html/
|
|
COPY css/ css/
|
|
COPY static/ static/
|
|
COPY tmpl/ tmpl/
|
|
EXPOSE 3000
|
|
CMD ["./app"]
|