grim/containers/prosody

Parents 32ae77026ca6
Children 734268c38205
Fix the path for the hub plugin so it ends up in a subdirectory
  • +2 -1
    Dockerfile
  • --- a/Dockerfile Thu Oct 24 04:21:05 2019 -0500
    +++ b/Dockerfile Thu Oct 24 05:20:11 2019 -0500
    @@ -44,7 +44,8 @@
    RUN set -ex && \
    cd /tmp && \
    wget https://hg.sr.ht/~grim/prosody_mod_auth_jetbrains_hub/archive/tip.tar.gz && \
    - tar -C /usr/lib/prosody/modules --strip-components=1 -zxf tip.tar.gz && \
    + mkdir -p /usr/lib/prosody/modules/mod_auth_jetbrains_hub/ && \
    + tar -C /usr/lib/prosody/modules/mod_auth_jetbrains_hub/ --strip-components=1 -zxf tip.tar.gz && \
    rm -rf tip.tar.gz
    COPY prosody.cfg.lua /etc/prosody/prosody.cfg.lua