mirror of
https://github.com/Hopiu/cookiecutter-django.git
synced 2026-05-09 13:14:43 +00:00
Prepending docker.io/ to image names allows projects to be run in alternate runtimes such as podman-compose without additional configuration.
9 lines
158 B
Docker
9 lines
158 B
Docker
FROM docker.io/node:20-bookworm-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./package.json /app
|
|
|
|
RUN npm install && npm cache clean --force
|
|
|
|
ENV PATH ./node_modules/.bin/:$PATH
|