Skip to content

Commit

Permalink
Dockerfile fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ShahanaFarooqui committed Jun 12, 2024
1 parent 8fc46e9 commit ef9fa99
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -170,13 +170,13 @@ RUN gcc -o configurator configurator.c

WORKDIR /opt/lightningd

RUN mkdir zlib && tar xvf zlib.tar.gz -C zlib --strip-components=1 \
&& cd zlib \
&& ./configure ${ZLIB_CONFIG} \
&& make \
&& make install && cd .. && \
rm zlib.tar.gz && \
rm -rf zlib
RUN mkdir zlib && tar xvf zlib.tar.gz -C zlib --strip-components=1
RUN cd zlib
RUN ./configure ${ZLIB_CONFIG}
RUN make
RUN make install && cd ..
RUN rm zlib.tar.gz
RUN rm -rf zlib

RUN unzip sqlite.zip \
&& cd sqlite-* \
Expand Down

0 comments on commit ef9fa99

Please sign in to comment.