cookiecutter-django/{{cookiecutter.project_slug}}/compose/local/node/Dockerfile

10 lines
148 B
Docker

FROM node:16-bullseye-slim
WORKDIR /app
COPY ./package.json /app
RUN npm install && npm cache clean --force
ENV PATH ./node_modules/.bin/:$PATH