Update docker/mjolnir/Dockerfile
ci/woodpecker/push/woodpecker Pipeline failed Details

This commit is contained in:
colin 2024-02-03 19:02:47 +00:00
parent 0a83072ee0
commit aa7edb4c57
1 changed files with 5 additions and 5 deletions

View File

@ -1,8 +1,8 @@
FROM matrixdotorg/mjolnir:latest
WORKDIR /usr/src/mjolnir
ADD https://raw.githubusercontent.com/matrix-org/mjolnir/main/config/default.yaml /etc/mjolnir/default.yaml
ADD https://raw.githubusercontent.com/matrix-org/mjolnir/main/mjolnir-entrypoint.sh /usr/src/mjolnir-entrypoint.sh
RUN chmod +x /usr/src/mjolnir/mjolnir-entrypoint.sh
RUN chmod +x /usr/src/mjolnir/start.sh
ENTRYPOINT ["mjolnir-entrypoint.sh"]
CMD ["start.sh"]
ADD https://raw.githubusercontent.com/matrix-org/mjolnir/main/mjolnir-entrypoint.sh /usr/bin/local/mjolnir-entrypoint.sh
RUN chmod +x /usr/bin/local/mjolnir/mjolnir-entrypoint.sh
RUN chmod +x /usr/bin/local/mjolnir/start.sh
ENTRYPOINT ["/usr/bin/local/mjolnir/mjolnir-entrypoint.sh"]
CMD ["/usr/bin/local/mjolnir/start.sh"]