cookiecutter-django/{{cookiecutter.project_slug}}/compose/node/Dockerfile-dev

12 lines
149 B
Plaintext
Raw Normal View History

2017-04-23 03:10:23 +03:00
FROM node:7.9-slim
2017-04-21 14:06:23 +03:00
RUN mkdir -p /app
2017-05-02 14:36:43 +03:00
COPY package.json /app
2017-04-21 14:06:23 +03:00
WORKDIR /app
2017-04-23 02:31:54 +03:00
2017-04-21 14:06:23 +03:00
RUN npm install && npm cache clean
ENV PATH ./node_modules/.bin/:$PATH