12 lines
286 B
Docker
12 lines
286 B
Docker
FROM golang:1.17-alpine AS builder
|
|
WORKDIR /app/
|
|
ADD go.mod go.sum ./
|
|
RUN go mod download
|
|
ADD . .
|
|
RUN GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -ldflags="-w -s" -o link main.go
|
|
|
|
FROM golang:1.17-alpine
|
|
WORKDIR /app/
|
|
COPY --from=builder /app/link /app/link
|
|
ENTRYPOINT ["/app/link"]
|