Mercurial > libervia-backend
view docker/libervia-web-dev/Dockerfile @ 3566:17b69a111a85
app manager (docker/weblate): use new `files` feature to set `settings-override.py`:
This file is used to set `USE_X_FORWARDED_HOST`, which is necessary to make Weblate work
correctly being an Apache (and potentially other HTTP servers) reverse proxy (otherwise we
have CSRF errors, cf. https://github.com/WeblateOrg/weblate/issues/1912).
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 12 Jun 2021 15:14:57 +0200 |
parents | 73e04040d577 |
children | 443b3a784eba |
line wrap: on
line source
FROM libervia/backend:dev LABEL maintainer="Goffi <tmp_dockerfiles@goffi.org>" ARG DEBIAN_FRONTEND=noninteractive USER root RUN apt-get install -y --no-install-recommends yarnpkg WORKDIR /home/libervia USER libervia RUN cd /src && hg clone https://repos.goffi.org/libervia && \ ~/libervia_env/bin/pip install -e libervia && \ mv libervia/libervia.egg-info ~/libervia_env/lib/python3.*/site-packages RUN ./entrypoint.sh \ # we build here to avoid re-downloading node modules or other browser # dependencies on each run libervia-web fg -- --build-only && \ libervia-backend stop EXPOSE 8080 8443 ENTRYPOINT ["libervia-web"] CMD ["fg"]