Skip to content

Commit

Permalink
feat(release): source
Browse files Browse the repository at this point in the history
  • Loading branch information
0xfourzerofour committed Feb 24, 2024
1 parent 446a8ad commit 8e57785
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Dockerfile.build
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,8 @@ RUN apt-get update \
&& npm install -g yarn \
&& apt-get clean

RUN apt-get update && apt-get -y upgrade && apt-get install -y protobuf-compiler
# Install Protobuf compiler v3
RUN curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v3.15.8/protoc-3.15.8-linux-x86_64.zip
RUN unzip protoc-3.15.8-linux-x86_64.zip -d $HOME/.local
RUN export PATH="$PATH:$HOME/.local/bin"

0 comments on commit 8e57785

Please sign in to comment.