File tree Expand file tree Collapse file tree 15 files changed +34
-34
lines changed Expand file tree Collapse file tree 15 files changed +34
-34
lines changed Original file line number Diff line number Diff line change 1
- FROM node:12-alpine3.11 AS builder
1
+ FROM node:12-alpine3.12 AS builder
2
2
RUN apk add --no-cache git bash
3
3
WORKDIR /arby
4
4
ADD .src .
5
5
RUN npm install
6
6
7
- FROM node:12-alpine3.11
7
+ FROM node:12-alpine3.12
8
8
RUN apk add --no-cache bash supervisor curl rsync
9
9
RUN mkdir /root/.arby
10
10
VOLUME [ "/root/.arby" ]
Original file line number Diff line number Diff line change 1
- FROM alpine:3.11 as builder
1
+ FROM alpine:3.12 as builder
2
2
RUN apk --no-cache add musl-dev g++ make autoconf automake libtool pkgconfig boost-dev libevent-dev zeromq-dev
3
3
WORKDIR /bitcoin
4
4
ADD .src .
5
5
RUN ./autogen.sh
6
- RUN ./configure --disable-ccache --disable-tests --disable-bench --without-gui --with-daemon --with-utils --without-libs --disable-wallet
6
+ RUN ./configure --disable-ccache --disable-tests --disable-bench --without-gui --with-daemon --with-utils --without-libs --disable-wallet --enable-endomorphism
7
7
RUN make -j$(nproc)
8
8
RUN make install
9
9
RUN strip /usr/local/bin/bitcoind /usr/local/bin/bitcoin-cli
10
10
11
11
12
- FROM alpine:3.11
12
+ FROM alpine:3.12
13
13
RUN apk --no-cache add boost-system boost-filesystem boost-chrono boost-thread libevent zeromq bash
14
14
COPY --from=builder /usr/local/bin/bitcoind /usr/local/bin/bitcoin-cli /usr/local/bin/
15
15
ENTRYPOINT ["bitcoind" ]
Original file line number Diff line number Diff line change 1
- FROM golang:1.14-alpine3.11 as builder
1
+ FROM golang:1.14-alpine3.12 as builder
2
2
RUN apk add --no-cache bash git make gcc libc-dev
3
3
WORKDIR $GOPATH/src/github.com/BoltzExchange/boltz-lnd
4
4
ADD .src .
5
5
RUN go mod vendor
6
6
RUN make install
7
7
8
8
# Final stage
9
- FROM alpine:3.11
9
+ FROM alpine:3.12
10
10
RUN apk add --no-cache bash expect supervisor tor
11
11
COPY --from=builder /go/bin/boltzd /go/bin/boltzcli /usr/local/bin/
12
12
COPY --from=builder /go/src/github.com/BoltzExchange/boltz-lnd/example/config.toml /sample-config.toml
Original file line number Diff line number Diff line change 1
- FROM node:12-alpine3.11 AS builder
2
- RUN apk add --no-cache git bash python3 make g++ python
1
+ FROM node:12-alpine3.12 AS builder
2
+ RUN apk add --no-cache git bash python3 make g++ python2
3
3
WORKDIR /connext
4
4
ADD .src .
5
5
RUN npm install
6
6
RUN npm run build
7
7
8
- FROM node:12-alpine3.11
8
+ FROM node:12-alpine3.12
9
9
RUN apk add --no-cache bash supervisor curl
10
10
RUN mkdir /root/.connext
11
11
COPY --from=builder /connext /app
Original file line number Diff line number Diff line change 1
- FROM golang:1.14-alpine as builder
1
+ FROM golang:1.14-alpine3.12 as builder
2
2
RUN apk add --no-cache make gcc musl-dev linux-headers git
3
3
RUN apk add --no-cache alpine-sdk
4
4
WORKDIR /go-ethereum
5
5
ADD .src .
6
6
RUN make geth
7
7
8
- FROM alpine:3.11
8
+ FROM alpine:3.12
9
9
RUN apk add --no-cache ca-certificates bash
10
10
COPY --from=builder /go-ethereum/build/bin/geth /usr/local/bin/
11
11
COPY entrypoint.sh rinkeby-peers.txt mainnet-peers.txt /
Original file line number Diff line number Diff line change 1
- FROM alpine:3.11 as builder
1
+ FROM alpine:3.12 as builder
2
2
RUN apk --no-cache add musl-dev g++ make autoconf automake libtool pkgconfig boost-dev libressl-dev libevent-dev zeromq-dev
3
3
WORKDIR /litecoin
4
4
ADD .src .
@@ -13,7 +13,7 @@ RUN make install
13
13
RUN strip /usr/local/bin/litecoind /usr/local/bin/litecoin-cli
14
14
15
15
16
- FROM alpine:3.11
16
+ FROM alpine:3.12
17
17
RUN apk --no-cache add boost-system boost-filesystem boost-chrono boost-thread libevent libressl zeromq bash
18
18
COPY --from=builder /usr/local/bin/litecoind /usr/local/bin/litecoin-cli /usr/local/bin/
19
19
ADD entrypoint.sh /
Original file line number Diff line number Diff line change 1
- FROM golang:1.13 -alpine3.11 as builder
2
- RUN apk add --no-cache bash git make gcc musl-dev
1
+ FROM golang:1.14 -alpine3.12 as builder
2
+ RUN apk add --no-cache bash git make gcc musl-dev patch
3
3
WORKDIR $GOPATH/src/github.com/lightningnetwork/lnd
4
4
ADD .src .
5
5
RUN go mod vendor
@@ -13,7 +13,7 @@ RUN go install -v -mod=vendor -tags="$TAGS" -ldflags "$LDFLAGS" ./cmd/lnd ./cmd/
13
13
RUN strip /go/bin/lnd /go/bin/lncli
14
14
15
15
16
- FROM alpine:3.11
16
+ FROM alpine:3.12
17
17
RUN apk add --no-cache bash tor
18
18
COPY --from=builder /go/bin/lnd /go/bin/lncli /usr/local/bin/
19
19
COPY entrypoint.sh /entrypoint.sh
Original file line number Diff line number Diff line change 1
- FROM golang:1.13 -alpine3.11 as builder
1
+ FROM golang:1.14 -alpine3.12 as builder
2
2
RUN apk add --no-cache bash git make gcc musl-dev
3
3
WORKDIR $GOPATH/src/github.com/lightningnetwork/lnd
4
4
ADD .src .
@@ -8,7 +8,7 @@ RUN go install -v -tags="$TAGS" -ldflags "$LDFLAGS" ./cmd/lnd ./cmd/lncli
8
8
RUN strip /go/bin/lnd /go/bin/lncli
9
9
10
10
# Final stage
11
- FROM alpine:3.11
11
+ FROM alpine:3.12
12
12
RUN apk add --no-cache bash expect supervisor tor
13
13
COPY --from=builder /go/bin/lnd /go/bin/lncli /usr/local/bin/
14
14
COPY entrypoint.sh /entrypoint.sh
Original file line number Diff line number Diff line change 1
- FROM golang:1.13 -alpine3.11 as builder
2
- RUN apk add --no-cache bash git make gcc musl-dev
1
+ FROM golang:1.14 -alpine3.12 as builder
2
+ RUN apk add --no-cache bash git make gcc musl-dev patch
3
3
WORKDIR $GOPATH/src/github.com/lightningnetwork/lnd
4
4
ADD .src .
5
5
RUN go mod vendor
@@ -13,7 +13,7 @@ RUN go install -v -mod=vendor -tags="$TAGS" -ldflags "$LDFLAGS" ./cmd/lnd ./cmd/
13
13
RUN strip /go/bin/lnd /go/bin/lncli
14
14
15
15
16
- FROM alpine:3.11
16
+ FROM alpine:3.12
17
17
RUN apk add --no-cache bash tor
18
18
COPY --from=builder /go/bin/lnd /go/bin/lncli /usr/local/bin/
19
19
COPY entrypoint.sh /entrypoint.sh
Original file line number Diff line number Diff line change 1
- FROM golang:1.13 -alpine3.11 as builder
1
+ FROM golang:1.14 -alpine3.12 as builder
2
2
RUN apk add --no-cache bash git make gcc musl-dev
3
3
WORKDIR $GOPATH/src/github.com/lightningnetwork/lnd
4
4
ADD .src .
@@ -8,7 +8,7 @@ RUN go install -v -tags="$TAGS" -ldflags "$LDFLAGS" ./cmd/lnd ./cmd/lncli
8
8
RUN strip /go/bin/lnd /go/bin/lncli
9
9
10
10
# Final stage
11
- FROM alpine:3.11
11
+ FROM alpine:3.12
12
12
RUN apk add --no-cache bash expect supervisor tor
13
13
COPY --from=builder /go/bin/lnd /go/bin/lncli /usr/local/bin/
14
14
COPY entrypoint.sh /entrypoint.sh
You can’t perform that action at this time.
0 commit comments