From 4f0e2c19142ad6c9c3ab08a7d6c879e53c2f6ed0 Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Mon, 15 May 2017 13:20:59 -0700 Subject: [PATCH] Upgrade builderhub image to new ref Also renames the package from builder to builderhub --- images/builder/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/images/builder/Dockerfile b/images/builder/Dockerfile index 86caef60..e69eeda7 100644 --- a/images/builder/Dockerfile +++ b/images/builder/Dockerfile @@ -8,11 +8,11 @@ RUN apt-get update && \ python3-pip && \ apt-get clean -RUN pip3 install --no-cache-dir git+https://github.com/yuvipanda/builderhub.git@a07ae23 -ADD builder_config.py /etc +RUN pip3 install --no-cache-dir git+https://github.com/yuvipanda/builderhub.git@9fffab6 +ADD builderhub_config.py /etc WORKDIR /etc -CMD python3 -m builder.app +CMD python3 -m builderhub.app EXPOSE 8585