Build js/ts projects #62

Merged
telackey merged 3 commits from dboreham/build-ts-repos into main 2022-12-12 21:42:14 +00:00
2 changed files with 6 additions and 1 deletions
Showing only changes of commit d6e90c2dbd - Show all commits

View File

@ -33,4 +33,7 @@ RUN \
# RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}"
# [Optional] Uncomment if you want to install more global node modules
# RUN su node -c "npm install -g <your-package-list-here>"
# RUN su node -c "npm install -g <your-package-list-here>"
COPY entrypoint.sh entrypoint.sh
ENTRYPOINT ./entrypoint.sh

View File

@ -0,0 +1,2 @@
#!/bin/sh
exec "$@"