FROM mhart/alpine-node:10.9 WORKDIR /app # Native dependencies RUN apk add --no-cache make gcc g++ python COPY package*.json ./ # Install app dependencies RUN npm install --only=production ARG TARGET_ENV ENV HOST=0.0.0.0 ENV LDAP_URI=ldap://frankiz.eleves.polytechnique.fr:389 COPY . . EXPOSE 3000 CMD [ "node", "build/bundle.js" ]