Skip to content

Commit 540d61c

Browse files
authored
Merge pull request #83 from lightninglabs/docker-protoc
docker: add protoc to docker image
2 parents fdd6cb9 + 9c0d6c0 commit 540d61c

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ RUN apk add --no-cache --update alpine-sdk \
2020
bash \
2121
binutils \
2222
tar \
23+
protobuf-dev \
2324
&& touch ~/.bashrc \
2425
&& curl -sfSLO https://unofficial-builds.nodejs.org/download/release/${NODE_VERSION}/node-${NODE_VERSION}-linux-x64-musl.tar.xz \
2526
&& tar -xf node-${NODE_VERSION}-linux-x64-musl.tar.xz -C /usr --strip 1 \

app/scripts/build-protos.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ const main = async () => {
8282
await patch();
8383
} catch (error) {
8484
console.error(error);
85+
process.exit(1);
8586
}
8687
};
8788

0 commit comments

Comments
 (0)