mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-15 14:17:43 +03:00
0618d35733
Co-authored-by: aidenlu <aiden_lu@wochacha.com>
10 lines
148 B
Docker
10 lines
148 B
Docker
FROM node:20-bookworm-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./package.json /app
|
|
|
|
RUN npm install && npm cache clean --force
|
|
|
|
ENV PATH ./node_modules/.bin/:$PATH
|