Skip to content

Commit 89caeb2

Browse files
Fix CLI and Docker builds
1 parent 8833ee1 commit 89caeb2

File tree

5 files changed

+1264
-7
lines changed

5 files changed

+1264
-7
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
# syntax=docker/dockerfile:1
22

3-
FROM node:18 AS setup
3+
FROM node:24 AS setup
44
WORKDIR /app
55
COPY package.json yarn.lock .yarnrc.yml ./
66
COPY .yarn/ .yarn/
77
COPY packages/ packages/
88
RUN find packages/ -type f \! \( -name "package.json" -o -name "yarn.lock" \) -delete && \
99
find . -type d -empty -delete
1010

11-
FROM node:18 AS build
11+
FROM node:24 AS build
1212
WORKDIR /app
1313
COPY --from=setup /app .
1414
RUN yarn install --immutable
1515
COPY . .
1616
WORKDIR /app/packages/apollo-collaboration-server
1717
RUN yarn build
1818

19-
FROM node:18
19+
FROM node:24
2020
LABEL org.opencontainers.image.source=https://github.com/GMOD/Apollo3
2121
LABEL org.opencontainers.image.description="Apollo collaboration server"
2222
WORKDIR /app

packages/apollo-cli/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:18-alpine3.19
1+
FROM node:24-alpine
22

33
LABEL org.opencontainers.image.source=https://github.com/GMOD/Apollo3
44
LABEL org.opencontainers.image.description="Apollo CLI"

0 commit comments

Comments
 (0)