mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-15 14:17:43 +03:00
5bc3df7650
* Bump node in /{{cookiecutter.project_slug}}/compose/local/node Bumps node from 16-bullseye-slim to 18-bullseye-slim. --- updated-dependencies: - dependency-name: node dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Update to node 18 in prod Dockerfile * Update to node 18 in package.json * Update node version in CI * Update node version in documentation --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bruno Alla <alla.brunoo@gmail.com>
10 lines
148 B
Docker
10 lines
148 B
Docker
FROM node:18-bullseye-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./package.json /app
|
|
|
|
RUN npm install && npm cache clean --force
|
|
|
|
ENV PATH ./node_modules/.bin/:$PATH
|