File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,8 @@ RUN apk add --no-cache \
16
16
git \
17
17
file \
18
18
gnupg \
19
- swig
19
+ swig \
20
+ zlib-dev
20
21
21
22
WORKDIR /opt
22
23
@@ -59,7 +60,7 @@ WORKDIR /opt/lightningd
59
60
COPY . .
60
61
61
62
ARG DEVELOPER=0
62
- RUN make -j3 DEVELOPER=${DEVELOPER} && cp lightningd/lightning* cli/lightning-cli /usr/bin/
63
+ RUN ./configure && make -j3 && cp lightningd/lightning* cli/lightning-cli /usr/bin/
63
64
64
65
FROM alpine:3.7
65
66
@@ -68,7 +69,8 @@ RUN apk add --no-cache \
68
69
sqlite-dev \
69
70
inotify-tools \
70
71
socat \
71
- bash
72
+ bash \
73
+ zlib-dev
72
74
73
75
ARG TRACE_TOOLS=false
74
76
ENV TRACE_TOOLS=$TRACE_TOOLS
@@ -105,8 +107,6 @@ RUN apk add --update curl && \
105
107
106
108
ENV LIGHTNINGD_DATA=/root/.lightning
107
109
ENV LIGHTNINGD_PORT=9835
108
- ARG DEVELOPER=0
109
- ENV DEVELOPER=$DEVELOPER
110
110
111
111
RUN mkdir $LIGHTNINGD_DATA && \
112
112
touch $LIGHTNINGD_DATA/config
You can’t perform that action at this time.
0 commit comments