view docker/libervia_e2e/Dockerfile @ 3444:10942a6eca8a

contrat social: updated English translation's formulation about censorship: the new formulation is a translation of the new formulation in original French version. This has been requested at annual general meeting of 2019-11-23
author Goffi <goffi@goffi.org>
date Thu, 10 Dec 2020 10:27:59 +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