12 lines
264 B
Docker
12 lines
264 B
Docker
FROM golang:alpine AS builder
|
|
WORKDIR /app
|
|
COPY go.mod go.sum ./
|
|
RUN go mod download
|
|
COPY . .
|
|
RUN CGO_ENABLED=0 GOOS=linux go build -o test-client ./cmd/test-client
|
|
|
|
FROM alpine:3.18
|
|
WORKDIR /app
|
|
COPY --from=builder /app/test-client .
|
|
ENTRYPOINT ["./test-client"]
|