identity-service/Dockerfile.target

31 lines
692 B
Docker
Raw Normal View History

# Builder
2022-12-03 23:36:59 +01:00
ARG BUILDER_IMAGE
FROM ${BUILDER_IMAGE} AS builder
# Destination image - server
# FROM gcr.io/distroless/base-debian10
FROM alpine:3.17
ARG SVC_NAME
ARG SVC_VER
2022-12-03 23:36:59 +01:00
ARG BIN_OUTPUT
ARG BUILD_TIME
LABEL dev.egommerce.image.author="Piotr Biernat"
2022-12-02 21:51:51 +01:00
LABEL dev.egommerce.image.vendor="Egommerce"
LABEL dev.egommerce.image.service=${SVC_NAME}
LABEL dev.egommerce.image.version=${SVC_VER}
2022-12-03 23:36:59 +01:00
LABEL dev.egommerce.image.build_time=${BUILD_TIME}
WORKDIR /
COPY --from=builder $BIN_OUTPUT /app
2022-12-17 06:31:35 +01:00
COPY --from=builder /go/bin/migrate /bin/go_migrate
COPY .env.dist /.env
2022-12-17 06:31:35 +01:00
COPY ./bin /bin
RUN chmod 755 /bin/entrypoint.sh /bin/migrate.sh
EXPOSE 80
2022-12-07 02:42:58 +01:00
2022-12-16 01:01:54 +01:00
CMD ["sh", "-c", "/app"]
2022-12-17 06:31:35 +01:00
ENTRYPOINT ["entrypoint.sh"]