short/Dockerfile
2024-08-13 21:39:26 +00:00

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" ]