Skip to content

Commit

Permalink
fix: RUN lines are a single-line command
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasvuotto committed Oct 25, 2024
1 parent 7502bb5 commit 08391bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ RUN if [ "$arg_env" = "testnet" ]; then \
elif [ "$arg_env" = "mainnet" ]; then \
mv .env.prod .env.local; \
elif [ "$arg_env" = "testnet.qa" ]; then \
mv .env.testnet.qa .env.local \
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 08391bc

Please sign in to comment.