Mercurial > libervia-backend
comparison docker/libervia-web-dev/Dockerfile @ 3613:443b3a784eba
docker: fix Dockerfile following repositories redirections
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 02 Aug 2021 21:47:16 +0200 |
parents | 73e04040d577 |
children | 0ffaa231138c |
comparison
equal
deleted
inserted
replaced
3579:1faf2b0bb745 | 3613:443b3a784eba |
---|---|
9 RUN apt-get install -y --no-install-recommends yarnpkg | 9 RUN apt-get install -y --no-install-recommends yarnpkg |
10 WORKDIR /home/libervia | 10 WORKDIR /home/libervia |
11 USER libervia | 11 USER libervia |
12 RUN cd /src && hg clone https://repos.goffi.org/libervia && \ | 12 RUN cd /src && hg clone https://repos.goffi.org/libervia && \ |
13 ~/libervia_env/bin/pip install -e libervia && \ | 13 ~/libervia_env/bin/pip install -e libervia && \ |
14 mv libervia/libervia.egg-info ~/libervia_env/lib/python3.*/site-packages | 14 mv libervia/libervia_web.egg-info ~/libervia_env/lib/python3.*/site-packages |
15 | 15 |
16 RUN ./entrypoint.sh \ | 16 RUN ./entrypoint.sh \ |
17 # we build here to avoid re-downloading node modules or other browser | 17 # we build here to avoid re-downloading node modules or other browser |
18 # dependencies on each run | 18 # dependencies on each run |
19 libervia-web fg -- --build-only && \ | 19 libervia-web fg -- --build-only && \ |