From 1ef06711588ffa73029d1c6e6ecdd31db9f2a3da Mon Sep 17 00:00:00 2001 From: dandds Date: Fri, 7 Feb 2020 12:48:44 -0500 Subject: [PATCH] Update CAs in the container. In order for the app to make > TLS 1.2 connections to Redis, we need to update the local certificate store in the container. --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 6f29d300..6dd7629a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -101,5 +101,7 @@ RUN mkdir /var/run/uwsgi && \ chown -R atst:atat /var/run/uwsgi && \ chown -R atst:atat "${APP_DIR}" +RUN update-ca-certificates + # Run as the unprivileged APP user USER atst