File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1- # syntax = docker/dockerfile:1.4
1+ # syntax = docker/dockerfile:1.17
22
3- FROM node:22.18 -alpine AS base
3+ FROM node:22.19 -alpine AS base
44WORKDIR /base
55COPY --link package.json yarn.lock ./
66RUN --mount=type=cache,target=/tmp/yarn_cache \
77 YARN_CACHE_FOLDER=/tmp/yarn_cache \
88 yarn install
99
10- FROM node:22.18 -alpine
10+ FROM node:22.19 -alpine
1111RUN apk add --no-cache tini
1212WORKDIR /base
1313COPY --link --from=base /base ./
Original file line number Diff line number Diff line change 1- FROM node:22.18 -alpine AS base
1+ FROM node:22.19 -alpine AS base
22WORKDIR /base
33COPY package*.json ./
44RUN npm install
Original file line number Diff line number Diff line change 1- # syntax = docker/dockerfile:1.4
1+ # syntax = docker/dockerfile:1.17
22
3- FROM node:22.18 -alpine AS base
3+ FROM node:22.19 -alpine AS base
44WORKDIR /base
55COPY --link package.json yarn.lock ./
66RUN --mount=type=cache,target=/tmp/yarn_cache \
77 YARN_CACHE_FOLDER=/tmp/yarn_cache \
88 yarn install
99
10- FROM node:22.18 -alpine
10+ FROM node:22.19 -alpine
1111WORKDIR /base
1212COPY --link --from=base /base ./
1313COPY --link . .
You can’t perform that action at this time.
0 commit comments