1
0
mirror of https://github.com/ebosas/microservices.git synced 2024-11-24 08:02:24 +02:00
microservices/database.Dockerfile

13 lines
337 B
Docker
Raw Normal View History

2021-11-02 16:44:51 +02:00
# FROM golang:1.17-alpine AS database
FROM public.ecr.aws/bitnami/golang:1.17 AS database
2021-06-01 13:26:02 +02:00
WORKDIR /go/src/app
2021-06-08 20:26:14 +02:00
COPY go.* .
COPY internal ./internal
2021-06-01 13:26:02 +02:00
RUN go mod download
2021-06-08 20:26:14 +02:00
COPY cmd/database .
2021-06-01 13:26:02 +02:00
RUN CGO_ENABLED=0 GOOS=linux go build -ldflags '-s' -o database .
FROM scratch
COPY --from=database /go/src/app/database /database
CMD ["/database"]