Removing tmp

This commit is contained in:
Miguel Martinez
2016-06-17 12:40:07 -07:00
parent 9bff59d626
commit 79f53728b8
3 changed files with 2 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ COPY rootfs/ /
# The extra files that we bundle should use the Bitnami User
# so the entrypoint does not have any permission issues
RUN chown -R bitnami:bitnami /tmp/app
RUN chown -R bitnami:bitnami /app_template
USER bitnami
# This will add an specific version of Express that will validate the package.json requirement

View File

@@ -43,7 +43,7 @@ wait_for_db() {
setup_db() {
npm install mongodb@2.1.18 --save
log "Adding MongoDB example files under /config/mongodb.js"
cp -rn /tmp/app/config .
cp -rn /app_template/config .
}
log () {