grim/containers/reviewboard

Parents 7cdab23ad7af
Children 1e62590d46fa
Somehow I didn't notice that rbintegrations wasn't updating.
  • +11 -3
    Dockerfile
  • --- a/Dockerfile Sat Jan 09 19:01:48 2021 -0600
    +++ b/Dockerfile Sat Jan 09 19:45:21 2021 -0600
    @@ -37,11 +37,19 @@
    CMD ["/start.sh"]
    -# install rbjbhub and rbintegrations 2.0beta1
    +# install rbjbhub and rbintegrations 2.0beta1, which means we temporariliy
    +# need npm
    RUN set -e && \
    + apt-get update && \
    + apt-get install -y --no-install-recommends npm && \
    + apt-get clean && \
    + rm -rf /var/lib/apt/lists && \
    . /opt/venv/bin/activate && \
    set -x && \
    - pip install \
    + python -m pip install -U \
    rbjbhub \
    - git://github.com/reviewboard/rbintegrations.git@release-2.0beta1#egg=rbintegrations
    + git+https://github.com/reviewboard/rbintegrations.git@release-2.0beta1#egg=rbintegrations \
    + && \
    + apt-get remove -y --purge npm && \
    + apt-get autoremove -y --purge