[infra] vault + chsettle + aurora for dev

This commit is contained in:
Stephan D
2026-03-16 19:50:05 +01:00
parent 5b1aca86e7
commit 89edf33c2c
51 changed files with 1606 additions and 62 deletions

View File

@@ -28,9 +28,10 @@ RUN --mount=type=cache,target=/root/.cache/go-build \
-o /out/callbacks .
FROM alpine:latest AS runtime
ARG APP_CONFIG_PATH=api/edge/callbacks/config.yml
RUN apk add --no-cache ca-certificates tzdata wget
WORKDIR /app
COPY api/edge/callbacks/config.yml /app/config.yml
COPY ${APP_CONFIG_PATH} /app/config.yml
COPY api/edge/callbacks/entrypoint.sh /app/entrypoint.sh
COPY --from=build /out/callbacks /app/callbacks
RUN chmod +x /app/entrypoint.sh