File tree Expand file tree Collapse file tree 3 files changed +0
-12
lines changed Expand file tree Collapse file tree 3 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -14,11 +14,6 @@ ENV GO111MODULE on
14
14
15
15
ENV NODE_VERSION=v12.17.0
16
16
17
- # We need some additional proto files with google annotations, the version
18
- # should match what's in lnd's scripts/install_travis_proto.sh
19
- ENV PROTOC_VERSION=3.4.0
20
- ENV PROTOC_URL="https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOC_VERSION}/protoc-${PROTOC_VERSION}-linux-x86_64.zip"
21
-
22
17
# Install dependencies and install/build lightning-terminal.
23
18
RUN apk add --no-cache --update alpine-sdk \
24
19
git \
@@ -27,11 +22,6 @@ RUN apk add --no-cache --update alpine-sdk \
27
22
bash \
28
23
binutils \
29
24
tar \
30
- protobuf-dev \
31
- zip \
32
- && curl -sfSLO ${PROTOC_URL} \
33
- && unzip protoc-${PROTOC_VERSION}-linux-x86_64.zip -d /usr/local \
34
- && rm /usr/local/bin/protoc /usr/local/readme.txt \
35
25
&& touch ~/.bashrc \
36
26
&& curl -sfSLO https://unofficial-builds.nodejs.org/download/release/${NODE_VERSION}/node-${NODE_VERSION}-linux-x64-musl.tar.xz \
37
27
&& tar -xf node-${NODE_VERSION}-linux-x64-musl.tar.xz -C /usr --strip 1 \
Original file line number Diff line number Diff line change 12
12
"eject" : " react-scripts eject" ,
13
13
"lint" : " eslint --ext .ts,.tsx --ignore-path .eslintignore ." ,
14
14
"tsc" : " tsc --noEmit" ,
15
- "postinstall" : " yarn protos" ,
16
15
"protos" : " node ./scripts/build-protos.js" ,
17
16
"storybook" : " start-storybook -p 9009 -s public" ,
18
17
"build-storybook" : " build-storybook -s public"
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ RUN apk add --no-cache --update alpine-sdk \
20
20
bash \
21
21
binutils \
22
22
tar \
23
- protobuf-dev \
24
23
&& touch ~/.bashrc \
25
24
&& curl -sfSLO https://unofficial-builds.nodejs.org/download/release/${NODE_VERSION}/node-${NODE_VERSION}-linux-x64-musl.tar.xz \
26
25
&& tar -xf node-${NODE_VERSION}-linux-x64-musl.tar.xz -C /usr --strip 1 \
You can’t perform that action at this time.
0 commit comments