mirror of
https://github.com/SourceFellows/trainingfellow.git
synced 2024-11-22 14:11:44 +00:00
14 lines
234 B
Docker
14 lines
234 B
Docker
FROM golang:1 as builder
|
|
|
|
WORKDIR /go/src/registration
|
|
|
|
COPY go.* ./
|
|
RUN go mod download
|
|
|
|
COPY . .
|
|
RUN CGO_ENABLED=0 go build -o registration ./cmd
|
|
|
|
FROM alpine:latest
|
|
COPY --from=builder /go/src/registration .
|
|
CMD ["./registration"]
|