Skip to content

Commit

Permalink
fix: Dockerfile syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasvuotto committed Oct 25, 2024
1 parent bd07f91 commit 79934fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ RUN if [ "$arg_env" = "testnet" ]; then \
mv .env.qa .env.local; \
elif [ "$arg_env" = "mainnet" ]; then \
mv .env.prod .env.local; \
elif [ "$arg_env" = "testnet.qa"]; then \
mv .env.testnet.qa .env.local
elif [ "$arg_env" = "testnet.qa" ]; then \
mv .env.testnet.qa .env.local \
elif [ "$arg_env" = "testnet.staging"]; then \
mv .env.testnet.staging .env.local
mv .env.testnet.staging .env.local \
fi

# Export the NEXT_PUBLIC_BUILD_ID as an environment variable
Expand Down

0 comments on commit 79934fe

Please sign in to comment.