Mercurial > libervia-backend
comparison docker/prosody-e2e/Dockerfile @ 3694:a6811543c7ff
docker (prosody): remove unused `entrypoint.sh` file and `sed` from Dockerfile:
The `sed` is not necessary anymore in recent Docker images, since
https://github.com/prosody/prosody-docker/pull/65 has been merged.
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 22 Oct 2021 10:39:05 +0200 |
parents | 73e04040d577 |
children | 31c84a32c897 |
comparison
equal
deleted
inserted
replaced
3693:0bbdc50aa405 | 3694:a6811543c7ff |
---|---|
14 | 14 |
15 COPY --chown=root:prosody prosody.cfg.lua /etc/prosody/prosody.cfg.lua | 15 COPY --chown=root:prosody prosody.cfg.lua /etc/prosody/prosody.cfg.lua |
16 COPY --chown=root:tls-cert certificates/server1.test/cert.pem /usr/share/libervia/certificates/server1.test.pem | 16 COPY --chown=root:tls-cert certificates/server1.test/cert.pem /usr/share/libervia/certificates/server1.test.pem |
17 COPY --chown=root:tls-cert certificates/server1.test/key.pem /usr/share/libervia/certificates/server1.test-key.pem | 17 COPY --chown=root:tls-cert certificates/server1.test/key.pem /usr/share/libervia/certificates/server1.test-key.pem |
18 | 18 |
19 # we add exec to handle properly signals, this is missing upstream | |
20 # FIXME: to be removed when new images are generated with | |
21 # https://github.com/prosody/prosody-docker/pull/65 | |
22 RUN sed -i "s/^runuser -u prosody/exec \0/" /entrypoint.sh |