Merge pull request 'fixed icon path in billing' (#659) from SEND064 into main
Some checks failed
ci/woodpecker/push/gateway_chain Pipeline is pending
ci/woodpecker/push/gateway_mntx Pipeline is pending
ci/woodpecker/push/gateway_tgsettle Pipeline is pending
ci/woodpecker/push/gateway_tron Pipeline is pending
ci/woodpecker/push/ledger Pipeline is pending
ci/woodpecker/push/notification Pipeline is pending
ci/woodpecker/push/payments_methods Pipeline is pending
ci/woodpecker/push/payments_orchestrator Pipeline is pending
ci/woodpecker/push/payments_quotation Pipeline is pending
ci/woodpecker/push/billing_documents Pipeline failed
ci/woodpecker/push/bff Pipeline was successful
ci/woodpecker/push/billing_fees Pipeline was successful
ci/woodpecker/push/callbacks Pipeline was successful
ci/woodpecker/push/discovery Pipeline was successful
ci/woodpecker/push/fx_ingestor Pipeline was successful
ci/woodpecker/push/fx_oracle Pipeline failed
ci/woodpecker/push/frontend Pipeline failed

Reviewed-on: #659
This commit was merged in pull request #659.
This commit is contained in:
2026-03-05 11:35:37 +00:00
3 changed files with 5 additions and 3 deletions

View File

@@ -26,7 +26,7 @@ documents:
issuer: issuer:
legal_name: "Sendico Ltd" legal_name: "Sendico Ltd"
legal_address: "12 Market Street, London, UK" legal_address: "12 Market Street, London, UK"
logo_path: "/assets/logo.png" logo_path: "assets/logo.png"
templates: templates:
acceptance_path: "templates/acceptance.tpl" acceptance_path: "templates/acceptance.tpl"
protection: protection:

View File

@@ -26,9 +26,9 @@ documents:
issuer: issuer:
legal_name: "Sendico Ltd" legal_name: "Sendico Ltd"
legal_address: "12 Market Street, London, UK" legal_address: "12 Market Street, London, UK"
logo_path: "/assets/logo.png" logo_path: "/app/assets/logo.png"
templates: templates:
acceptance_path: "templates/acceptance.tpl" acceptance_path: "/app/templates/acceptance.tpl"
protection: protection:
owner_password: "sendico-documents" owner_password: "sendico-documents"
storage: storage:

View File

@@ -34,6 +34,8 @@ FROM alpine:latest AS runtime
RUN apk add --no-cache ca-certificates tzdata wget RUN apk add --no-cache ca-certificates tzdata wget
WORKDIR /app WORKDIR /app
COPY api/billing/documents/config.yml /app/config.yml COPY api/billing/documents/config.yml /app/config.yml
COPY api/billing/documents/templates /app/templates
COPY api/billing/documents/assets /app/assets
COPY --from=build /out/billing-documents /app/billing-documents COPY --from=build /out/billing-documents /app/billing-documents
EXPOSE 50061 9409 EXPOSE 50061 9409
ENTRYPOINT ["/app/billing-documents"] ENTRYPOINT ["/app/billing-documents"]