basket-service/Dockerfile.target
Piotr Biernat 5efc8296e5
All checks were successful
continuous-integration/drone/push Build is passing
Refactor. Consul TTl fix, gracefull shutdown
2022-12-02 20:12:02 +01:00

24 lines
530 B
Docker

# Builder
ARG BUILDER_IMAGE="git.pbiernat.dev/egommerce/basket-builder:latest"
FROM ${BUILDER_IMAGE} AS builder
# Destination image - server
# FROM gcr.io/distroless/base-debian10
FROM alpine:3.17
ARG BIN_OUTPUT
ARG SVC_NAME
ARG SVC_VER
LABEL dev.egommerce.image.author="Piotr Biernat"
LABEL dev.egommerce.image.service="api-eventubus"
LABEL dev.egommerce.image.service=${SVC_NAME}
LABEL dev.egommerce.image.version=${SVC_VER}
WORKDIR /
COPY --from=builder $BIN_OUTPUT /app
COPY .env.dist /.env
EXPOSE 80
ENTRYPOINT ["/app"]