summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Festi <ffesti@redhat.com>2020-03-24 11:32:47 +0100
committerPanu Matilainen <pmatilai@redhat.com>2020-03-26 11:57:58 +0200
commit59782fc3f9744ba800fbf886dc40b70833721183 (patch)
treeef6a5582fd96f8e2b8052d7731b01d2a6aae33e4
parent67849c1e3c8318a44dc4742b68f5449123823fe2 (diff)
downloadrpm-59782fc3f9744ba800fbf886dc40b70833721183.tar.gz
CI Dockerfile: Move copy command to a later time
This allows to reuse more of the container build
-rw-r--r--ci/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/Dockerfile b/ci/Dockerfile
index 497f06e29..3bdfe6dd0 100644
--- a/ci/Dockerfile
+++ b/ci/Dockerfile
@@ -2,7 +2,6 @@ FROM fedora
MAINTAINER Igor Gnatenko <i.gnatenko.brain@gmail.com>
WORKDIR /opt/rpm
-COPY . .
RUN echo -e "deltarpm=0\ninstall_weak_deps=0\ntsflags=nodocs" >> /etc/dnf/dnf.conf
RUN dnf -y update
@@ -41,6 +40,7 @@ RUN dnf -y install \
python2-devel \
dwz \
&& dnf clean all
+COPY . .
RUN autoreconf -vfi
RUN ./configure \
--with-crypto=openssl \