view docker/libervia_e2e/Dockerfile @ 3478:b65175eb7769

tools (common/template): new `fallback` settings: `fallback` can be used to change fallback behaviour. By default, fallback is done on `default` theme, this can be set to an other theme with a string, or to a list of fallback. The list can also be empty is no fallback is desired (notably usefull for "main" themes, on which other themes may fallback). This setting replaces `css_default_fallback`.
author Goffi <goffi@goffi.org>
date Fri, 19 Mar 2021 14:01:52 +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