19 lines
297 B
Docker
19 lines
297 B
Docker
FROM golang:1.23 as builder
|
|
|
|
ENV CGO_ENABLED=0
|
|
|
|
COPY . /go/src/short/
|
|
|
|
WORKDIR /go/src/short
|
|
|
|
RUN go get ./... && go build -o short .
|
|
|
|
FROM scratch
|
|
|
|
LABEL maintainer="Thomas Andrade <wolvie@gmail.com>"
|
|
|
|
COPY --from=builder /go/src/short/short /
|
|
COPY templates /templates
|
|
|
|
ENTRYPOINT [ "/short" ]
|