mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-14 13:47:07 +03:00
12 lines
152 B
Plaintext
12 lines
152 B
Plaintext
|
FROM node:7.10-slim
|
||
|
|
||
|
RUN mkdir -p /app
|
||
|
|
||
|
COPY ./package.json /app
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
RUN npm install && npm cache clean
|
||
|
|
||
|
ENV PATH ./node_modules/.bin/:$PATH
|