Skip to content

Commit

Permalink
pls fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shaikhnedab committed Feb 5, 2024
1 parent 9e7e020 commit 4a878b6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 4 additions & 2 deletions nodejs-alpine-pnpm/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ echo "Node.js Version"
node -v
echo "NPM Version"
npm -v
echo "NPM Install Packages"
npm i
echo "PNPM Version"
pnpm -v
echo "PNPM Install Packages"
pnpm install

# Replace Startup Variables
MODIFIED_STARTUP=$(echo -e $(echo -e ${STARTUP} | sed -e 's/{{/${/g' -e 's/}}/}/g'))
Expand Down
6 changes: 2 additions & 4 deletions nodejs-alpine/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,8 @@ echo "Node.js Version"
node -v
echo "NPM Version"
npm -v
echo "PNPM Version"
pnpm -v
echo "PNPM Install Packages"
pnpm install
echo "NPM Install Packages"
npm i

# Replace Startup Variables
MODIFIED_STARTUP=$(echo -e $(echo -e ${STARTUP} | sed -e 's/{{/${/g' -e 's/}}/}/g'))
Expand Down

0 comments on commit 4a878b6

Please sign in to comment.