view docker/libervia_e2e/Dockerfile @ 3423:0653be94ee5e

docker: added libervia e2e image and include it in `docker-compose_e2e`: The `libervia_e2e` image is based on main `libervia` one, and add, register and set the same test certificates as the ones used in `backend_e2e`.
author Goffi <goffi@goffi.org>
date Mon, 16 Nov 2020 14:51:15 +0100
parents
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