From 18eb9e67ac8c8e6309edeba2a0f74691feb68e34 Mon Sep 17 00:00:00 2001 From: Jake Low Date: Tue, 12 Nov 2024 13:42:55 -0800 Subject: [PATCH] Rename env.production to .env.local in container This allows overriding environment variables while still inheriting the default values in maproulette/maproulette3's .env file. --- frontend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 1641af8..ca3f8cf 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -27,7 +27,7 @@ RUN \ WORKDIR /maproulette-frontend # This file is needed for the build process -COPY env.production .env +COPY env.production .env.local COPY customLayers.json ./src/customLayers.json # Build the Maproulette Frontend