File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
ide/code/gitpod-web-extension Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 2
2
# Licensed under the GNU Affero General Public License (AGPL).
3
3
# See License.AGPL.txt in the project root for license information.
4
4
5
- FROM node:18.20.7 -alpine AS builder
5
+ FROM node:22.15.1 -alpine AS builder
6
6
7
7
# Install bash
8
8
RUN apk update && \
@@ -13,11 +13,11 @@ COPY components-gitpod-db--migrations /installer/
13
13
WORKDIR /app
14
14
RUN /installer/install.sh
15
15
16
- FROM node:18.20.7 -alpine as proxy
16
+ FROM node:22.15.1 -alpine as proxy
17
17
RUN wget https://storage.googleapis.com/cloudsql-proxy/v1.37.6/cloud_sql_proxy.linux.amd64 -O /bin/cloud_sql_proxy \
18
18
&& chmod +x /bin/cloud_sql_proxy
19
19
20
- FROM node:18.20.7 -alpine
20
+ FROM node:22.15.1 -alpine
21
21
22
22
# Install bash
23
23
RUN apk update && \
Original file line number Diff line number Diff line change 1
1
# Copyright (c) 2020 Gitpod GmbH. All rights reserved.
2
2
# Licensed under the GNU Affero General Public License (AGPL).
3
3
# 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
5
5
6
6
ARG CODE_EXTENSION_COMMIT
7
7
Original file line number Diff line number Diff line change 2
2
# Licensed under the GNU Affero General Public License (AGPL).
3
3
# See License.AGPL.txt in the project root for license information.
4
4
5
- FROM node:18.20.7 -alpine AS builder
5
+ FROM node:22.15.1 -alpine AS builder
6
6
7
7
# Install Python, make, gcc and g++ for node-gyp
8
8
RUN apk update && \
@@ -14,7 +14,7 @@ COPY components-server--app /installer/
14
14
WORKDIR /app
15
15
RUN /installer/install.sh
16
16
17
- FROM node:18.20.7 -alpine
17
+ FROM node:22.15.1 -alpine
18
18
ENV NODE_OPTIONS="--unhandled-rejections=warn --max_old_space_size=2048"
19
19
20
20
EXPOSE 3000
Original file line number Diff line number Diff line change 2
2
# Licensed under the GNU Affero General Public License (AGPL).
3
3
# See License.AGPL.txt in the project root for license information.
4
4
5
- FROM node:18.20.7 -alpine AS builder
5
+ FROM node:22.15.1 -alpine AS builder
6
6
7
7
# Install bash for the installer script
8
8
RUN apk update && \
@@ -14,7 +14,7 @@ COPY components-ws-manager-bridge--app /installer/
14
14
WORKDIR /app
15
15
RUN /installer/install.sh
16
16
17
- FROM node:18.20.7 -alpine
17
+ FROM node:22.15.1 -alpine
18
18
ENV NODE_OPTIONS=--unhandled-rejections=warn
19
19
EXPOSE 3000
20
20
COPY --from=builder --chown=node:node /app /app/
You can’t perform that action at this time.
0 commit comments