Skip to content

Commit

Permalink
Merge pull request #280 from RootstockCollective/fix/dockerfile-syntax
Browse files Browse the repository at this point in the history
fix: Dockerfile syntax error
  • Loading branch information
jessgusclark authored Oct 25, 2024
2 parents bd07f91 + 79934fe commit fea210c
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 fea210c

Please sign in to comment.