mirror of
https://github.com/Hopiu/cookiecutter-django.git
synced 2026-05-11 06:03:09 +00:00
10 lines
147 B
Docker
10 lines
147 B
Docker
|
|
FROM node:10-stretch-slim
|
||
|
|
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
COPY ./package.json /app
|
||
|
|
|
||
|
|
RUN npm install && npm cache clean --force
|
||
|
|
|
||
|
|
ENV PATH ./node_modules/.bin/:$PATH
|