@@ -69,7 +69,7 @@ FROM ubuntu:jammy as build-node-service
69
69
RUN apt update && DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y curl ca-certificates
70
70
71
71
# Download nodejs and install yarn
72
- RUN curl -sL https://deb.nodesource.com/setup_20 .x | bash - \
72
+ RUN curl -sL https://deb.nodesource.com/setup_19 .x | bash - \
73
73
&& apt-get install --no-install-recommends -y nodejs \
74
74
&& npm install -g yarn
75
75
@@ -94,7 +94,7 @@ FROM ubuntu:jammy as lowcoder-ce-node-service
94
94
LABEL maintainer="lowcoder"
95
95
96
96
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y curl ca-certificates \
97
- && curl -sL https://deb.nodesource.com/setup_20 .x | bash - \
97
+ && curl -sL https://deb.nodesource.com/setup_19 .x | bash - \
98
98
&& apt-get install --no-install-recommends -y nodejs gosu \
99
99
&& npm install -g yarn \
100
100
&& rm -rf /var/cache/apt/lists \
@@ -166,7 +166,7 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install --no-instal
166
166
&& echo "deb [signed-by=/usr/share/keyrings/redis-archive-keyring.gpg] https://packages.redis.io/deb bullseye main" | tee /etc/apt/sources.list.d/redis.list \
167
167
&& curl -fsSL https://www.mongodb.org/static/pgp/server-4.4.asc | gpg --dearmor -o /usr/share/keyrings/mongodb-archive-keyring.gpg \
168
168
&& echo "deb [signed-by=/usr/share/keyrings/mongodb-archive-keyring.gpg arch=amd64,arm64] http://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse" | tee /etc/apt/sources.list.d/mongodb-org-4.4.list \
169
- && curl -sL https://deb.nodesource.com/setup_20 .x | bash - \
169
+ && curl -sL https://deb.nodesource.com/setup_19 .x | bash - \
170
170
&& apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends -y \
171
171
mongodb-org \
172
172
redis \
0 commit comments