Mercurial > libervia-backend
view docker/libervia-web-dev/Dockerfile @ 3585:31628770a15a
core (xmpp): renamed `SatRosterProtocol.presenceSubscribed` to `isSubscribedFrom` (and added `isSubscribedTo`)
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 28 Jul 2021 22:15:31 +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"]