diff --git a/backend/services/deviceauth/Dockerfile b/backend/services/deviceauth/Dockerfile index 96ae6dfa..522e0cd7 100644 --- a/backend/services/deviceauth/Dockerfile +++ b/backend/services/deviceauth/Dockerfile @@ -25,4 +25,5 @@ ARG BIN_FILE=./dist/${TARGETOS}/${TARGETARCH}/deviceauth USER $USER COPY --chown=$USER backend/services/deviceauth/config.yaml /etc/deviceauth/config.yaml COPY --from=builder --chown=$USER /build/deviceauth /usr/bin/deviceauth +COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ ENTRYPOINT ["/usr/bin/deviceauth", "--config", "/etc/deviceauth/config.yaml"] diff --git a/backend/services/deviceconfig/Dockerfile b/backend/services/deviceconfig/Dockerfile index b4af7ec8..2848180b 100644 --- a/backend/services/deviceconfig/Dockerfile +++ b/backend/services/deviceconfig/Dockerfile @@ -24,4 +24,5 @@ ARG USER=65534 USER $USER COPY --chown=$USER backend/services/deviceconfig/config.yaml /etc/deviceconfig/config.yaml COPY --from=builder --chown=$USER /build/deviceconfig /usr/bin/deviceconfig +COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ ENTRYPOINT ["/usr/bin/deviceconfig", "--config", "/etc/deviceconfig/config.yaml"] diff --git a/backend/services/deviceconnect/Dockerfile b/backend/services/deviceconnect/Dockerfile index 17acfce4..f353de55 100644 --- a/backend/services/deviceconnect/Dockerfile +++ b/backend/services/deviceconnect/Dockerfile @@ -24,4 +24,5 @@ ARG USER=65534 USER $USER COPY --chown=$USER backend/services/deviceconnect/config.yaml /etc/deviceconnect/config.yaml COPY --from=builder --chown=$USER /build/deviceconnect /usr/bin/deviceconnect +COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ ENTRYPOINT ["/usr/bin/deviceconnect", "--config", "/etc/deviceconnect/config.yaml"] diff --git a/backend/services/inventory/Dockerfile b/backend/services/inventory/Dockerfile index 47aae18a..a03b978c 100644 --- a/backend/services/inventory/Dockerfile +++ b/backend/services/inventory/Dockerfile @@ -27,4 +27,5 @@ ARG BIN_FILE=./dist/${TARGETOS}/${TARGETARCH}/inventory USER $USER COPY --chown=$USER backend/services/inventory/config.yaml /etc/inventory/config.yaml COPY --from=builder --chown=$USER /build/inventory /usr/bin/inventory +COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ ENTRYPOINT ["/usr/bin/inventory", "--config", "/etc/inventory/config.yaml"]