docker: add protoc to docker image

This commit is contained in:
jamaljsr 2020-07-29 16:49:35 -04:00
parent fdd6cb94d4
commit 9c0d6c09d5
2 changed files with 2 additions and 0 deletions

View file

@ -20,6 +20,7 @@ RUN apk add --no-cache --update alpine-sdk \
bash \
binutils \
tar \
protobuf-dev \
&& touch ~/.bashrc \
&& curl -sfSLO https://unofficial-builds.nodejs.org/download/release/${NODE_VERSION}/node-${NODE_VERSION}-linux-x64-musl.tar.xz \
&& tar -xf node-${NODE_VERSION}-linux-x64-musl.tar.xz -C /usr --strip 1 \

View file

@ -82,6 +82,7 @@ const main = async () => {
await patch();
} catch (error) {
console.error(error);
process.exit(1);
}
};