From 645eb1a1efc3c2a963a8b4e891d7c56c890cd9f2 Mon Sep 17 00:00:00 2001 From: Dylan Hall Date: Wed, 18 Dec 2024 10:27:32 -0500 Subject: [PATCH] FI-3565: upgrade dockerfile to match upstream --- validator/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/validator/Dockerfile b/validator/Dockerfile index eb9f64144..8244394b2 100644 --- a/validator/Dockerfile +++ b/validator/Dockerfile @@ -25,6 +25,9 @@ RUN adduser $APPLICATION_USER RUN mkdir /app RUN chown -R $APPLICATION_USER /app +RUN mkdir /home/$APPLICATION_USER/.fhir +RUN chown -R $APPLICATION_USER /home/$APPLICATION_USER/.fhir + USER $APPLICATION_USER # These lines copy the packaged application into the Docker image and sets the working directory to where it was copied.