Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# syntax = docker/dockerfile:1.4
# syntax = docker/dockerfile:1.20

FROM node:22.18-alpine AS base
FROM node:22.21-alpine AS base
WORKDIR /base
COPY --link package.json yarn.lock ./
RUN --mount=type=cache,target=/tmp/yarn_cache \
YARN_CACHE_FOLDER=/tmp/yarn_cache \
yarn install

FROM node:22.18-alpine
FROM node:22.21-alpine
RUN apk add --no-cache tini
WORKDIR /base
COPY --link --from=base /base ./
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-static
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22.18-alpine AS base
FROM node:22.21-alpine AS base
WORKDIR /base
COPY package*.json ./
RUN npm install
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile-upload-source-maps
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# syntax = docker/dockerfile:1.4
# syntax = docker/dockerfile:1.20

FROM node:22.18-alpine AS base
FROM node:22.21-alpine AS base
WORKDIR /base
COPY --link package.json yarn.lock ./
RUN --mount=type=cache,target=/tmp/yarn_cache \
YARN_CACHE_FOLDER=/tmp/yarn_cache \
yarn install

FROM node:22.18-alpine
FROM node:22.21-alpine
WORKDIR /base
COPY --link --from=base /base ./
COPY --link . .
Expand Down
Loading