fibonacci_go/Dockerfile_better

17 lines
294 B
Text
Raw Normal View History

2024-10-28 12:33:04 +00:00
FROM golang:latest AS builder
WORKDIR /shared-data/app
2024-10-28 13:23:52 +00:00
COPY ./ ./
2024-10-28 12:33:04 +00:00
# RUN go mod download
RUN CGO_ENABLED=0 GOOS=linux go build -o fibonacci_go .
FROM alpine:latest
WORKDIR /shared-data/app
COPY --from=builder /shared-data/app/fibonacci_go .
ENTRYPOINT [ "/shared-data/app/fibonacci_go" ]