-
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.
Answered by
tiangolo
Aug 29, 2024
Replies: 1 comment
-
I think you can probably add it in a Docker |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
tiangolo
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think you can probably add it in a Docker
RUN apt update && apt install ...
instruction in yourDockerfile
.