29 lines
1.1 KiB
Docker
29 lines
1.1 KiB
Docker
# syntax=docker.io/docker/dockerfile:experimental@sha256:de85b2f3a3e8a2f7fe48e8e84a65f6fdd5cd5183afa6412fff9caa6871649c44
|
|
FROM node:lts-alpine@sha256:2ae9624a39ce437e7f58931a5747fdc60224c6e40f8980db90728de58e22af7c
|
|
|
|
# npm wants to clone random Git repositories - lovely.
|
|
RUN apk add git python make build-base
|
|
|
|
# Run as user, otherwise, npx explodes.
|
|
USER 1000
|
|
RUN mkdir -p /home/node/app
|
|
RUN mkdir -p /home/node/.npm
|
|
WORKDIR /home/node/app
|
|
|
|
# Only invalidate the npm install step if package.json changed
|
|
ADD --chown=node:node package.json .
|
|
ADD --chown=node:node package-lock.json .
|
|
|
|
# We want to cache node_modules *and* incorporate it into the final image.
|
|
RUN --mount=type=cache,uid=1000,gid=1000,target=/home/node/.npm \
|
|
--mount=type=cache,uid=1000,gid=1000,target=node_modules \
|
|
npm install && \
|
|
cp -r node_modules node_modules_cache
|
|
|
|
# Amusingly, Debian's coreutils version has a bug where mv believes that
|
|
# the target is on a different fs and does a full recursive copy for what
|
|
# could be a renameat syscall. Alpine does not have this bug.
|
|
RUN rmdir node_modules && mv node_modules_cache node_modules
|
|
|
|
ADD --chown=node:node . .
|