File tree 1 file changed +9
-3
lines changed
1 file changed +9
-3
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.17.1-slim as builder
5
+ FROM node:18.20.7-alpine AS builder
6
+
7
+ # Install bash
8
+ RUN apk update && \
9
+ apk add bash && \
10
+ rm -rf /var/cache/apk/*
11
+
6
12
COPY components-gitpod-db--migrations /installer/
7
13
WORKDIR /app
8
14
RUN /installer/install.sh
9
15
10
- FROM node:18.17.1 as proxy
16
+ FROM node:18.20.7-alpine as proxy
11
17
RUN wget https://storage.googleapis.com/cloudsql-proxy/v1.23.0/cloud_sql_proxy.linux.amd64 -O /bin/cloud_sql_proxy \
12
18
&& chmod +x /bin/cloud_sql_proxy
13
19
14
- FROM node:18.17.1-slim
20
+ FROM node:18.20.7-alpine
15
21
ENV NODE_OPTIONS=--unhandled-rejections=warn
16
22
COPY migrate.sh /app/migrate.sh
17
23
COPY migrate_gcp.sh /app/migrate_gcp.sh
You can’t perform that action at this time.
0 commit comments