From ed75d0536b7cfa0ce1983914bb4bb84842ba2ef6 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Wed, 22 Apr 2020 15:01:30 -0500 Subject: [PATCH] Actually install extras from nodepool_base We added two packages to extras so that they'd end up in the container images, but we never told anything to install them. It became clear that that's confusing, so we added an api to python-builder to allow specifying a list of extras to install. Depends-On: https://review.opendev.org/722125 Change-Id: I27e10822744863560febcdad8bab9a4f3cf8fc8e --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0cda51178..5fd0e689a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ FROM docker.io/opendevorg/python-base:3.7 as nodepool-base # ============================================================================ COPY --from=builder /output/ /output -RUN /output/install-from-bindep +RUN /output/install-from-bindep nodepool_base RUN useradd -u 10001 -m -d /var/lib/nodepool -c "Nodepool Daemon" nodepool