From 7617a53bafd21bca744e786bc24c1d237416926f Mon Sep 17 00:00:00 2001 From: "Mahadik, Mukul Chandrakant" Date: Tue, 19 Mar 2024 17:59:26 -0700 Subject: [PATCH] Copy config-fake.py as config.py In the external public Docker image, make the config-fake.py available as config.py by copying it over into the container as config.py Internally, if custom config.py is needed, can copy it over in the internal Dockerfile. But might not even need the config.py --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2a00c5c..708ef72 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,7 +28,8 @@ COPY ./pages ./ WORKDIR /usr/src/app/utils COPY ./utils ./ WORKDIR /usr/src/app -COPY app.py config-fake.py app_sidebar_collapsible.py assets globals.py globalsUpdater.py Procfile ./ +COPY config-fake.py ./config.py +COPY app.py app_sidebar_collapsible.py assets globals.py globalsUpdater.py Procfile ./ WORKDIR /usr/src/app/assets COPY assets/style.css ./