Mercurial > libervia-backend
view docker/libervia_e2e/Dockerfile @ 3455:c30b4b18d3b8
plugin app manager docker: use default emails for weblate:
when `email_from` was not set in `sat.conf`, no value was set for `WEBLATE_SERVER_EMAIL`
and `WEBLATE_DEFAULT_FROM_EMAIL`. These environment variables are needed for Weblate to be
launched, so default value are now used (the same as the one from official Weblate Docker
image).
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 15 Jan 2021 11:27:15 +0100 |
parents | 0653be94ee5e |
children |
line wrap: on
line source
FROM salutatoi/libervia LABEL maintainer="Goffi <tmp_dockerfiles@goffi.org>" ARG DEBIAN_FRONTEND=noninteractive USER root # we install pre-generated certificates so we can do tests with valid TLS # those certificates are the same as in salutatoi/backend_e2e COPY --chown=root:root certificates/minica.pem /usr/local/share/ca-certificates/minica.crt COPY --chown=root:tls-cert certificates/server1.test/cert.pem /usr/share/sat/certificates/server1.test.pem COPY --chown=root:tls-cert certificates/server1.test/key.pem /usr/share/sat/certificates/server1.test-key.pem RUN update-ca-certificates COPY --chown=root:root sat.conf /etc/sat.conf WORKDIR /home/sat USER sat