mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-09-20 10:52:34 +03:00
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: browniebroke <861044+browniebroke@users.noreply.github.com>
10 lines
160 B
Docker
10 lines
160 B
Docker
FROM docker.io/node:24.8-bookworm-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./package.json /app
|
|
|
|
RUN npm install && npm cache clean --force
|
|
|
|
ENV PATH=./node_modules/.bin/:$PATH
|