chore: Update Dockerfile to use .env file for environment variables
Build and Push Docker Images / build-and-push (push) Successful in 24s

This commit is contained in:
2024-08-04 21:00:16 +02:00
parent 0a70c4b52f
commit 8a92baf120
+1 -1
View File
@@ -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