Mercurial > libervia-backend
comparison docker/pubsub/Dockerfile @ 3381:127dde80a0a5
docker: dockers images, first draft:
This patch introduce new docker images, replacing the unmaintained ones which were in
sat_docs.
Images + docker-compose files are provided to use SàT backend and Libervia, but also to
integrate and configure Prosody and SàT PubSub to run end-to-end tests.
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 19 Oct 2020 09:30:45 +0200 |
parents | |
children | fc83c4996c77 |
comparison
equal
deleted
inserted
replaced
3380:4dbf9fcbf26d | 3381:127dde80a0a5 |
---|---|
1 FROM debian:buster | |
2 | |
3 LABEL maintainer="Goffi <tmp_dockerfiles@goffi.org>" | |
4 | |
5 ARG DEBIAN_FRONTEND=noninteractive | |
6 | |
7 RUN apt-get update && apt-get upgrade -y && \ | |
8 apt-get install -y --no-install-recommends locales python3-dev python3-venv python3-wheel mercurial libpq-dev gcc postgresql-client && \ | |
9 # it's better to have a dedicated user | |
10 useradd -m sat && \ | |
11 mkdir /src && chown sat:sat /src && \ | |
12 \ | |
13 # we need UTF-8 locale | |
14 sed -i "s/# en_US.UTF-8/en_US.UTF-8/" /etc/locale.gen && locale-gen | |
15 | |
16 ENV LC_ALL en_US.UTF-8 | |
17 | |
18 WORKDIR /home/sat | |
19 COPY entrypoint.sh /home/sat | |
20 RUN chown sat:sat /home/sat/entrypoint.sh && chmod 0555 /home/sat/entrypoint.sh | |
21 | |
22 USER sat | |
23 RUN python3 -m venv sat_env && sat_env/bin/pip install wheel && cd /src && \ | |
24 # we install thoses packages in editable mode, so we can replace them easily with volumes | |
25 hg clone https://repos.goffi.org/sat_tmp && ~/sat_env/bin/pip install -e sat_tmp && \ | |
26 mv sat_tmp/sat_tmp.egg-info ~/sat_env/lib/python3.*/site-packages && \ | |
27 hg clone https://repos.goffi.org/sat_pubsub && ~/sat_env/bin/pip install -e sat_pubsub && \ | |
28 mv sat_pubsub/sat_pubsub.egg-info ~/sat_env/lib/python3.*/site-packages | |
29 | |
30 ENTRYPOINT ["/home/sat/entrypoint.sh"] |