Skip to content

Commit 78474ec

Browse files
committed
[node] Bump docker builder images 18.20.7 -> 22.15.1
1 parent f35a251 commit 78474ec

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

components/gitpod-db/leeway.Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Licensed under the GNU Affero General Public License (AGPL).
33
# See License.AGPL.txt in the project root for license information.
44

5-
FROM node:18.20.7-alpine AS builder
5+
FROM node:22.15.1-alpine AS builder
66

77
# Install bash
88
RUN apk update && \
@@ -13,11 +13,11 @@ COPY components-gitpod-db--migrations /installer/
1313
WORKDIR /app
1414
RUN /installer/install.sh
1515

16-
FROM node:18.20.7-alpine as proxy
16+
FROM node:22.15.1-alpine as proxy
1717
RUN wget https://storage.googleapis.com/cloudsql-proxy/v1.37.6/cloud_sql_proxy.linux.amd64 -O /bin/cloud_sql_proxy \
1818
&& chmod +x /bin/cloud_sql_proxy
1919

20-
FROM node:18.20.7-alpine
20+
FROM node:22.15.1-alpine
2121

2222
# Install bash
2323
RUN apk update && \

components/ide/code/gitpod-web-extension/leeway.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) 2020 Gitpod GmbH. All rights reserved.
22
# Licensed under the GNU Affero General Public License (AGPL).
33
# See License.AGPL.txt in the project root for license information.
4-
FROM node:18 as builder
4+
FROM node:22.15.1 as builder
55

66
ARG CODE_EXTENSION_COMMIT
77

components/server/leeway.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Licensed under the GNU Affero General Public License (AGPL).
33
# See License.AGPL.txt in the project root for license information.
44

5-
FROM node:18.20.7-alpine AS builder
5+
FROM node:22.15.1-alpine AS builder
66

77
# Install Python, make, gcc and g++ for node-gyp
88
RUN apk update && \
@@ -14,7 +14,7 @@ COPY components-server--app /installer/
1414
WORKDIR /app
1515
RUN /installer/install.sh
1616

17-
FROM node:18.20.7-alpine
17+
FROM node:22.15.1-alpine
1818
ENV NODE_OPTIONS="--unhandled-rejections=warn --max_old_space_size=2048"
1919

2020
EXPOSE 3000

components/ws-manager-bridge/leeway.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Licensed under the GNU Affero General Public License (AGPL).
33
# See License.AGPL.txt in the project root for license information.
44

5-
FROM node:18.20.7-alpine AS builder
5+
FROM node:22.15.1-alpine AS builder
66

77
# Install bash for the installer script
88
RUN apk update && \
@@ -14,7 +14,7 @@ COPY components-ws-manager-bridge--app /installer/
1414
WORKDIR /app
1515
RUN /installer/install.sh
1616

17-
FROM node:18.20.7-alpine
17+
FROM node:22.15.1-alpine
1818
ENV NODE_OPTIONS=--unhandled-rejections=warn
1919
EXPOSE 3000
2020
COPY --from=builder --chown=node:node /app /app/

0 commit comments

Comments
 (0)