mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-12-02 06:24:06 +03:00
12 lines
160 B
Plaintext
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
|