Mercurial > libervia-backend
annotate docker/libervia/Dockerfile @ 3436:f9011d62a87a
tests (e2e/conftest): check new exit code for conflict to avoid crashing if test accounts already exist
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 04 Dec 2020 12:34:24 +0100 |
parents | 2da32cdf4e53 |
children |
rev | line source |
---|---|
3419
ccb2a7e66f7d
docker (libervia): expose HTTP and HTTPS ports
Goffi <goffi@goffi.org>
parents:
3381
diff
changeset
|
1 FROM salutatoi/sat |
3381 | 2 |
3 LABEL maintainer="Goffi <tmp_dockerfiles@goffi.org>" | |
4 | |
5 ARG DEBIAN_FRONTEND=noninteractive | |
6 | |
7 USER root | |
8 | |
9 RUN apt-get install -y --no-install-recommends yarnpkg | |
10 WORKDIR /home/sat | |
11 USER sat | |
12 RUN cd /src && hg clone https://repos.goffi.org/libervia && \ | |
13 ~/sat_env/bin/pip install -e libervia && \ | |
14 mv libervia/libervia.egg-info ~/sat_env/lib/python3.*/site-packages | |
15 | |
3424
2da32cdf4e53
docker(libervia): build site in the image:
Goffi <goffi@goffi.org>
parents:
3419
diff
changeset
|
16 RUN ./entrypoint.sh \ |
2da32cdf4e53
docker(libervia): build site in the image:
Goffi <goffi@goffi.org>
parents:
3419
diff
changeset
|
17 # we build here to avoid re-downloading node modules or other browser |
2da32cdf4e53
docker(libervia): build site in the image:
Goffi <goffi@goffi.org>
parents:
3419
diff
changeset
|
18 # dependencies on each run |
2da32cdf4e53
docker(libervia): build site in the image:
Goffi <goffi@goffi.org>
parents:
3419
diff
changeset
|
19 libervia fg -- --build-only && \ |
2da32cdf4e53
docker(libervia): build site in the image:
Goffi <goffi@goffi.org>
parents:
3419
diff
changeset
|
20 sat stop |
2da32cdf4e53
docker(libervia): build site in the image:
Goffi <goffi@goffi.org>
parents:
3419
diff
changeset
|
21 |
3419
ccb2a7e66f7d
docker (libervia): expose HTTP and HTTPS ports
Goffi <goffi@goffi.org>
parents:
3381
diff
changeset
|
22 EXPOSE 8080 8443 |
ccb2a7e66f7d
docker (libervia): expose HTTP and HTTPS ports
Goffi <goffi@goffi.org>
parents:
3381
diff
changeset
|
23 |
3381 | 24 ENTRYPOINT ["libervia"] |
25 CMD ["fg"] |