catalog-service/Dockerfile.target
Piotr Biernat 39b94713b8
All checks were successful
continuous-integration/drone/push Build is passing
Added KV Config support and updated build scripts
2022-12-05 23:47:35 +01:00

26 lines
540 B
Docker

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