mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
Separated dependency installation, git clone and build commands to reduce repeated work on failure
This commit is contained in:
parent
b67877af6f
commit
efc4c7b09f
13
Dockerfile
13
Dockerfile
@ -14,12 +14,13 @@ RUN set -x \
|
||||
pkg-config \
|
||||
' \
|
||||
&& apt-get -qq update \
|
||||
&& apt-get -qq --no-install-recommends install $buildDeps \
|
||||
\
|
||||
&& git clone https://github.com/monero-project/monero.git $SRC_DIR \
|
||||
&& cd $SRC_DIR \
|
||||
&& make -j$(nproc) release-static \
|
||||
&& cp build/release/bin/* /usr/local/bin/ \
|
||||
&& apt-get -qq --no-install-recommends install $buildDeps
|
||||
|
||||
RUN git clone https://github.com/monero-project/monero.git $SRC_DIR
|
||||
WORKDIR $SRC_DIR
|
||||
RUN make -j$(nproc) release-static
|
||||
|
||||
RUN cp build/release/bin/* /usr/local/bin/ \
|
||||
\
|
||||
&& rm -r $SRC_DIR \
|
||||
&& apt-get -qq --auto-remove purge $buildDeps
|
||||
|
Loading…
Reference in New Issue
Block a user