File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 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.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+
612COPY components-gitpod-db--migrations /installer/
713WORKDIR /app
814RUN /installer/install.sh
915
10- FROM node:18.17.1 as proxy
16+ FROM node:18.20.7-alpine as proxy
1117RUN wget https://storage.googleapis.com/cloudsql-proxy/v1.23.0/cloud_sql_proxy.linux.amd64 -O /bin/cloud_sql_proxy \
1218 && chmod +x /bin/cloud_sql_proxy
1319
14- FROM node:18.17.1-slim
20+ FROM node:18.20.7-alpine
1521ENV NODE_OPTIONS=--unhandled-rejections=warn
1622COPY migrate.sh /app/migrate.sh
1723COPY migrate_gcp.sh /app/migrate_gcp.sh
You can’t perform that action at this time.
0 commit comments