identity-service/Dockerfile.target

34 lines
812 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
2023-10-01 21:35:21 +02:00
FROM alpine:3
ARG SVC_NAME
ARG SVC_VER
2022-12-03 23:36:59 +01:00
ARG BIN_OUTPUT
ARG BUILD_TIME
2023-10-01 21:35:21 +02:00
LABEL dev.egosport.image.author="Piotr Biernat"
LABEL dev.egosport.image.vendor="Egosport"
LABEL dev.egosport.image.service=${SVC_NAME}
LABEL dev.egosport.image.version=${SVC_VER}
LABEL dev.egosport.image.build_time=${BUILD_TIME}
WORKDIR /
COPY --from=builder $BIN_OUTPUT /app
2023-10-01 21:35:21 +02:00
COPY --from=builder /go/bin/migrate /bin/migrate
COPY --from=builder /go/bin/health /bin/health
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-17 06:31:35 +01:00
ENTRYPOINT ["entrypoint.sh"]
2023-10-01 21:35:21 +02:00
CMD ["sh", "-c", "/app"]
HEALTHCHECK --interval=5s --timeout=1s --retries=20 CMD health >/dev/null || exit 1