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

10 lines
148 B
Docker
Raw Normal View History

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