mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-08-29 08:14:51 +03:00
* Bump node in /{{cookiecutter.project_slug}}/compose/local/node Bumps node from 24.5-bookworm-slim to 24.6-bookworm-slim. --- updated-dependencies: - dependency-name: node dependency-version: 24.6-bookworm-slim dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Align versions --------- Signed-off-by: dependabot[bot] <support@github.com> 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.6-bookworm-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./package.json /app
|
|
|
|
RUN npm install && npm cache clean --force
|
|
|
|
ENV PATH=./node_modules/.bin/:$PATH
|