From 8a92baf120b33c9cdf5ca2e5d0c82dd616e2139f Mon Sep 17 00:00:00 2001 From: Bram Kelchtermans Date: Sun, 4 Aug 2024 21:00:16 +0200 Subject: [PATCH] chore: Update Dockerfile to use .env file for environment variables --- Dockers/remote-node-container/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockers/remote-node-container/entrypoint.sh b/Dockers/remote-node-container/entrypoint.sh index fedd7ae..e5e360b 100644 --- a/Dockers/remote-node-container/entrypoint.sh +++ b/Dockers/remote-node-container/entrypoint.sh @@ -55,7 +55,7 @@ cd /workspace yarn install # Copy the environment file to the repository's environments directory -if [ -f /environment/.dev.env ]; then +if [ -f /environment/.env ]; then mkdir -p /workspace/environments cp /environment/.env /workspace/.env else