mirror of
https://github.com/Hopiu/cookiecutter-django.git
synced 2026-05-10 05:34:44 +00:00
12 lines
152 B
Text
12 lines
152 B
Text
|
|
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
|