How do I use my gpg key to decrypt a file in a docker container without saving it in the image? How do I use my gpg key to decrypt a file in a docker container without saving it in the image? docker docker

How do I use my gpg key to decrypt a file in a docker container without saving it in the image?


You are correct in saying, that adding the key during docker build is insecure.

The env var is a valid way. If you use kubernetes later, you can safely save the your key as a secret in kubernetes. When deploying you can provide a secret via env to a container.

You could also provide a secret as a file from a kubernetes secret by using a volume, and mount a volume locally and provide the key file.

These are the official docs for kubernetes secrets: https://kubernetes.io/docs/concepts/configuration/secret/

I am not familiar with ECS, but I am positive that there are similar ways.