Fix TLS setup (#231)

This commit is contained in:
Vladyslav Simonenko
2025-08-05 01:12:56 -07:00
committed by GitHub
parent 362df0e7aa
commit 46e10513c2
2 changed files with 5 additions and 2 deletions

View File

@@ -96,8 +96,8 @@ services:
context: .
dockerfile: tls/Dockerfile.admin-tools-tls
args:
- BASEIMAGE=admin-tools:${TEMPORAL_VERSION}
image: temporalio/admin-tools-tls:${TEMPORAL_VERSION}
- BASEIMAGE=admin-tools:${TEMPORAL_ADMINTOOLS_VERSION}
image: temporalio/admin-tools-tls:${TEMPORAL_ADMINTOOLS_VERSION}
networks:
- temporal-network
stdin_open: true

View File

@@ -1,6 +1,9 @@
ARG BASEIMAGE
FROM temporalio/${BASEIMAGE}
USER root
COPY ./.pki/ca.pem /usr/local/share/ca-certificates/ca.crt
RUN update-ca-certificates
USER temporal