We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 362df0e commit 46e1051Copy full SHA for 46e1051
docker-compose-tls.yml
@@ -96,8 +96,8 @@ services:
96
context: .
97
dockerfile: tls/Dockerfile.admin-tools-tls
98
args:
99
- - BASEIMAGE=admin-tools:${TEMPORAL_VERSION}
100
- image: temporalio/admin-tools-tls:${TEMPORAL_VERSION}
+ - BASEIMAGE=admin-tools:${TEMPORAL_ADMINTOOLS_VERSION}
+ image: temporalio/admin-tools-tls:${TEMPORAL_ADMINTOOLS_VERSION}
101
networks:
102
- temporal-network
103
stdin_open: true
tls/Dockerfile.admin-tools-tls
@@ -1,6 +1,9 @@
1
ARG BASEIMAGE
2
FROM temporalio/${BASEIMAGE}
3
4
+USER root
5
COPY ./.pki/ca.pem /usr/local/share/ca-certificates/ca.crt
6
7
RUN update-ca-certificates
8
+
9
+USER temporal
0 commit comments