diff --git a/container-build/cerc-builder-js/Dockerfile b/container-build/cerc-builder-js/Dockerfile index 1f020839..faea9b38 100644 --- a/container-build/cerc-builder-js/Dockerfile +++ b/container-build/cerc-builder-js/Dockerfile @@ -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 " \ No newline at end of file +# RUN su node -c "npm install -g " + +COPY entrypoint.sh entrypoint.sh +ENTRYPOINT ./entrypoint.sh diff --git a/container-build/cerc-builder-js/entrypoint.sh b/container-build/cerc-builder-js/entrypoint.sh new file mode 100755 index 00000000..311cb8cb --- /dev/null +++ b/container-build/cerc-builder-js/entrypoint.sh @@ -0,0 +1,2 @@ +#!/bin/sh +exec "$@"