We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fdd6cb9 + 9c0d6c0 commit 540d61cCopy full SHA for 540d61c
Dockerfile
@@ -20,6 +20,7 @@ RUN apk add --no-cache --update alpine-sdk \
20
bash \
21
binutils \
22
tar \
23
+ protobuf-dev \
24
&& touch ~/.bashrc \
25
&& curl -sfSLO https://unofficial-builds.nodejs.org/download/release/${NODE_VERSION}/node-${NODE_VERSION}-linux-x64-musl.tar.xz \
26
&& tar -xf node-${NODE_VERSION}-linux-x64-musl.tar.xz -C /usr --strip 1 \
app/scripts/build-protos.js
@@ -82,6 +82,7 @@ const main = async () => {
82
await patch();
83
} catch (error) {
84
console.error(error);
85
+ process.exit(1);
86
}
87
};
88
0 commit comments