Skip to content

Commit

Permalink
docker-compose to docker compose. Clean install to fix `esbuild: …
Browse files Browse the repository at this point in the history
…Exec format error`.
  • Loading branch information
erinesullivan committed Nov 3, 2023
1 parent 14340c9 commit fccb0a6
Show file tree
Hide file tree
Showing 2 changed files with 248 additions and 222 deletions.
8 changes: 4 additions & 4 deletions init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ else
fi

echo "🚢 Build docker images"
docker-compose build
docker compose build

echo "📦 Installing Gems"
docker-compose run --rm web bundle
docker compose run --rm web bundle

echo "📦 Installing Node modules"
docker-compose run --rm web npm install
docker compose run --rm web npm install

echo "📦 Building js and css"
docker-compose run --rm web npm run build
docker compose run --rm web npm run build
Loading

0 comments on commit fccb0a6

Please sign in to comment.