Mercurial > libervia-backend
view docker/libervia-web-dev-e2e/Dockerfile @ 3641:0ffaa231138c
docker: Libervia revision can now be specified:
Using the `DOCKER_LIBERVIA_REV` environment variable, backend (and related repos) revision
can now be specified. By default (variable empty or not set), the current `tip` version is
used, and `dev` is used for tagging. If the variable is set, the revision will be used and
used for tagging the image.
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 08 Sep 2021 11:14:17 +0200 |
parents | 73e04040d577 |
children | f25442794e11 |
line wrap: on
line source
ARG REVISION=dev FROM libervia/web:${REVISION} 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 libervia/backend-dev-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/libervia/certificates/server1.test.pem COPY --chown=root:tls-cert certificates/server1.test/key.pem /usr/share/libervia/certificates/server1.test-key.pem RUN update-ca-certificates COPY --chown=root:root libervia.conf /etc/libervia.conf WORKDIR /home/libervia USER libervia