Mercurial > libervia-backend
view docker/libervia/Dockerfile @ 3491:2bd75fc2555d
tools (xml_tools): new findAncestor method:
this methods help to find a `domish.Element` ancestor with specific name/namespace
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 27 Mar 2021 14:35:07 +0100 |
parents | 2da32cdf4e53 |
children |
line wrap: on
line source
FROM salutatoi/sat LABEL maintainer="Goffi <tmp_dockerfiles@goffi.org>" ARG DEBIAN_FRONTEND=noninteractive USER root RUN apt-get install -y --no-install-recommends yarnpkg WORKDIR /home/sat USER sat RUN cd /src && hg clone https://repos.goffi.org/libervia && \ ~/sat_env/bin/pip install -e libervia && \ mv libervia/libervia.egg-info ~/sat_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 fg -- --build-only && \ sat stop EXPOSE 8080 8443 ENTRYPOINT ["libervia"] CMD ["fg"]