cookiecutter-django/{{cookiecutter.project_slug}}/compose/node/Dockerfile-dev
Nikita P. Shupeyko ff3e019a2d Revert "Try switching to node:6"
This reverts commit 62cc02df1a.
2017-04-23 02:26:31 +03:00

12 lines
160 B
Plaintext

FROM node:7-slim
RUN mkdir -p /app
COPY package.json /app/package.json
WORKDIR /app
RUN npm install && npm cache clean
ENV PATH ./node_modules/.bin/:$PATH