-
I'm using GRPC for our Microservices and established an openssl based certificate within the communication of the frontend container with nginx+flask towards these backend containers. The issue is now that
As this container is the base for the -flask version I ended up with adding openssl into the install-nginx-debian.sh which works. However I wonder if this is the intended way to do it, or if you have a better proposal. Thx for feedback |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I think you can probably add it in a Docker |
Beta Was this translation helpful? Give feedback.
I think you can probably add it in a Docker
RUN apt update && apt install ...
instruction in yourDockerfile
.