Adnan Abdulhussein 2016-08-25 17:51:39 -07:00
parent b460462379
commit 35f3a49dba
1 changed files with 2 additions and 3 deletions

View File

@ -26,10 +26,9 @@ ENV PATH=/opt/bitnami/node/bin:/opt/bitnami/python/bin:$PATH \
## STACKSMITH-END: Modifications below this line will be unchanged when regenerating
# ExpressJS template
ENV BITNAMI_APP_NAME=express
ENV BITNAMI_IMAGE_VERSION=4.13.4-r4
ENV BITNAMI_IMAGE_VERSION=4.14.0-r0
RUN npm install -g express-generator@4
@ -44,7 +43,7 @@ USER bitnami
# so we will not download any other version
# It also generates the cache in ~/.npm
RUN mkdir ~/test_app && cd ~/test_app &&\
npm install express@4.13.4 &&\
npm install express@4.14.0 &&\
express -f . && npm install && sudo rm -rf /tmp/npm* ~/test_app
WORKDIR /app