From e4d21e037af50ff6cde49be1886da4bcafd72811 Mon Sep 17 00:00:00 2001 From: Alessio Nava Date: Tue, 13 Feb 2018 14:54:17 +0000 Subject: [PATCH] Added ldapauth support to docker --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 273eb2e9..d49ffbeb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,10 +4,10 @@ FROM node:8.6 COPY ./package.json ./app/ WORKDIR /app/ ENV NODE_ENV production -RUN npm install --no-progress --production && npm install --no-progress passport-ldapjs +RUN npm install --no-progress --production && npm install --no-progress passport-ldapjs passport-ldapauth # Later, copy the app files. That improves development speed as buiding the Docker image will not have # to download and install all the NPM dependencies every time there's a change in the source code COPY . /app EXPOSE 3000 ENTRYPOINT ["bash", "/app/docker-entrypoint.sh"] -CMD ["node", "index.js"] \ No newline at end of file +CMD ["node", "index.js"]