File tree Expand file tree Collapse file tree 5 files changed +1264
-7
lines changed
Expand file tree Collapse file tree 5 files changed +1264
-7
lines changed Original file line number Diff line number Diff line change 11# syntax=docker/dockerfile:1
22
3- FROM node:18 AS setup
3+ FROM node:24 AS setup
44WORKDIR /app
55COPY package.json yarn.lock .yarnrc.yml ./
66COPY .yarn/ .yarn/
77COPY packages/ packages/
88RUN find packages/ -type f \! \( -name "package.json" -o -name "yarn.lock" \) -delete && \
99find . -type d -empty -delete
1010
11- FROM node:18 AS build
11+ FROM node:24 AS build
1212WORKDIR /app
1313COPY --from=setup /app .
1414RUN yarn install --immutable
1515COPY . .
1616WORKDIR /app/packages/apollo-collaboration-server
1717RUN yarn build
1818
19- FROM node:18
19+ FROM node:24
2020LABEL org.opencontainers.image.source=https://github.com/GMOD/Apollo3
2121LABEL org.opencontainers.image.description="Apollo collaboration server"
2222WORKDIR /app
Original file line number Diff line number Diff line change 1- FROM node:18-alpine3.19
1+ FROM node:24-alpine
22
33LABEL org.opencontainers.image.source=https://github.com/GMOD/Apollo3
44LABEL org.opencontainers.image.description="Apollo CLI"
You can’t perform that action at this time.
0 commit comments