mirror of
https://github.com/temporalio/docker-compose.git
synced 2026-08-30 18:41:40 -07:00
* Add example with tls enabled dependencies * bash oops * Move cert material to named volume
10 lines
156 B
Docker
10 lines
156 B
Docker
ARG BASEIMAGE
|
|
FROM temporalio/${BASEIMAGE}
|
|
|
|
USER root
|
|
COPY ./.pki/ca.pem /usr/local/share/ca-certificates/ca.crt
|
|
|
|
RUN update-ca-certificates
|
|
|
|
USER temporal
|