diff options
author | Tobias Henkel <tobias.henkel@bmw.de> | 2019-04-02 20:50:04 +0200 |
---|---|---|
committer | Tobias Henkel <tobias.henkel@bmw.de> | 2019-04-04 08:58:04 +0200 |
commit | 8e3d60567b265d2b2235ad954e7c5e2147a0cdf2 (patch) | |
tree | 32e0fa9b30094ad6ad0cae08544927abcb8f2e2c /Dockerfile | |
parent | 70ec13a7caf8903a95b0f9e08dc1facd2aa75e84 (diff) | |
download | zuul-8e3d60567b265d2b2235ad954e7c5e2147a0cdf2.tar.gz |
Cleanup executor specific requirements
Ara and openstacksdk are installed into the ansible virtualenvs now so
there is no need to pull them as executor specific dependencies.
Change-Id: I3aeac278b8e1f4bb796e0f3a3f475b3c97208a85
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile index 1cc85b3cb..2b474b9d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,10 +44,7 @@ VOLUME /var/lib/zuul CMD ["/usr/local/bin/zuul"] FROM zuul as zuul-executor -COPY --from=builder /output/ /output COPY --from=builder /usr/local/lib/zuul/ /usr/local/lib/zuul -RUN pip install --cache-dir=/output/wheels -r /output/zuul_executor/requirements.txt \ - && rm -rf /output CMD ["/usr/local/bin/zuul-executor"] |