Added Chronos to schedule tasks, restructured config as common pkg, updated server pkg

This commit is contained in:
PB
2025-10-23 07:30:05 +02:00
parent 5279e34b2c
commit ed325c7faa
16 changed files with 148 additions and 72 deletions

View File

@@ -8,7 +8,6 @@ FROM alpine:3.22
ARG SVC_NAME
ARG SVC_VER
ARG BIN_OUTPUT
ARG BUILD_TIME
LABEL dev.egommerce.image.author="Piotr Biernat"
@@ -18,16 +17,15 @@ LABEL dev.egommerce.image.version=${SVC_VER}
LABEL dev.egommerce.image.build_time=${BUILD_TIME}
WORKDIR /
COPY --from=builder $BIN_OUTPUT /app
COPY --from=builder /go/bin/migrate /bin/migrate
COPY --from=builder /go/bin/server /usr/local/bin/server
COPY --from=builder /go/bin/migrate /usr/local/bin/migrate
COPY --from=builder /go/bin/chronos /usr/local/bin/chronos
COPY deploy/.env.docker /.env
COPY ./bin /bin
COPY ./bin/* /usr/local/bin/
RUN chmod 755 /bin/entrypoint.sh /bin/migrate.sh
# RUN apk add curl
RUN chmod 755 /usr/local/bin/entrypoint.sh /usr/local/bin/migrate.sh
EXPOSE 443
ENTRYPOINT ["entrypoint.sh"]
CMD ["sh", "-c", "/app"]
CMD ["sh", "-c", "/usr/local/bin/server"]