2019-09-30 11:52:06 +00:00
|
|
|
FROM avatao/frontend-tutorial-framework:chausie-20190930 as frontend
|
2018-03-28 14:27:35 +00:00
|
|
|
FROM avatao/debian:buster
|
2018-01-11 16:47:44 +00:00
|
|
|
|
2019-09-05 16:16:53 +00:00
|
|
|
RUN apt-get update &&\
|
2018-02-05 14:51:53 +00:00
|
|
|
apt-get install -y --no-install-recommends \
|
2018-02-11 14:20:06 +00:00
|
|
|
supervisor \
|
|
|
|
libzmq5 \
|
|
|
|
nginx \
|
2019-05-07 10:58:58 +00:00
|
|
|
jq \
|
2019-09-05 16:16:53 +00:00
|
|
|
gettext-base &&\
|
|
|
|
rm -rf /var/lib/apt/lists/* &&\
|
2018-04-25 09:18:49 +00:00
|
|
|
ln -sf /bin/bash /bin/sh
|
2018-01-11 16:47:44 +00:00
|
|
|
|
2018-01-24 17:18:57 +00:00
|
|
|
COPY requirements.txt /tmp
|
2018-03-28 14:27:35 +00:00
|
|
|
RUN pip3 install -r /tmp/requirements.txt
|
2017-11-21 12:19:37 +00:00
|
|
|
|
2019-08-27 11:13:33 +00:00
|
|
|
RUN curl -Ls https://github.com/krallin/tini/releases/download/v0.18.0/tini-amd64 --output /bin/init &&\
|
|
|
|
echo "12d20136605531b09a2c2dac02ccee85e1b874eb322ef6baf7561cd93f93c855 /bin/init" |\
|
|
|
|
sha256sum --check --status &&\
|
|
|
|
chmod 755 /bin/init
|
|
|
|
|
2018-02-11 14:20:06 +00:00
|
|
|
ENV TFW_PUBLIC_PORT=8888 \
|
|
|
|
TFW_WEB_PORT=4242 \
|
|
|
|
TFW_LOGIN_APP_PORT=6666 \
|
|
|
|
TFW_TERMINADO_PORT=7878 \
|
|
|
|
TFW_SUPERVISOR_HTTP_PORT=9001 \
|
2019-05-27 18:11:03 +00:00
|
|
|
TFW_PUB_PORT=7654 \
|
|
|
|
TFW_PULL_PORT=8765
|
2018-02-11 14:20:06 +00:00
|
|
|
|
2018-03-23 10:32:11 +00:00
|
|
|
EXPOSE ${TFW_PUBLIC_PORT}
|
2018-02-11 14:20:06 +00:00
|
|
|
|
2018-04-25 09:18:49 +00:00
|
|
|
ENV PYTHONPATH="/usr/local/lib" \
|
2018-02-11 14:20:06 +00:00
|
|
|
TFW_SUPERVISOR_HTTP_URI="http://localhost:${TFW_SUPERVISOR_HTTP_PORT}" \
|
|
|
|
TFW_SUPERVISORD_CONF="/etc/supervisor/supervisord.conf" \
|
|
|
|
TFW_SUPERVISORD_COMPONENTS="/etc/supervisor/conf" \
|
2018-03-14 08:06:28 +00:00
|
|
|
TFW_NGINX_CONF="/etc/nginx/nginx.conf" \
|
|
|
|
TFW_NGINX_DEFAULT="/etc/nginx/sites-enabled/default" \
|
2018-02-11 14:20:06 +00:00
|
|
|
TFW_NGINX_COMPONENTS="/etc/nginx/components" \
|
2018-07-16 11:30:53 +00:00
|
|
|
TFW_LIB_DIR="/usr/local/lib" \
|
2018-03-03 21:46:14 +00:00
|
|
|
TFW_FRONTEND_DIR="/srv/frontend" \
|
2018-08-01 12:17:02 +00:00
|
|
|
TFW_DIR="/.tfw" \
|
|
|
|
TFW_SERVER_DIR="/.tfw/tfw_server" \
|
2018-07-16 12:28:40 +00:00
|
|
|
TFW_AUTH_KEY="/tmp/tfw-auth.key" \
|
2019-08-15 15:03:15 +00:00
|
|
|
TFW_LOGS_DIR="/var/log/tfw" \
|
|
|
|
TFW_PIPES_DIR="/run/tfw" \
|
|
|
|
TFW_SNAPSHOTS_DIR="/tmp/tfw-snapshots" \
|
2018-03-03 21:46:14 +00:00
|
|
|
TFW_HISTFILE="/home/${AVATAO_USER}/.bash_history" \
|
2018-03-05 15:17:56 +00:00
|
|
|
PROMPT_COMMAND="history -a"
|
2018-03-04 10:28:34 +00:00
|
|
|
|
2019-08-15 15:03:15 +00:00
|
|
|
COPY bashrc supervisor/tfw_init.sh /tmp/
|
2018-03-23 13:44:02 +00:00
|
|
|
COPY supervisor/supervisord.conf ${TFW_SUPERVISORD_CONF}
|
2018-06-29 20:53:44 +00:00
|
|
|
COPY supervisor/components/ ${TFW_SUPERVISORD_COMPONENTS}
|
2018-03-14 08:06:28 +00:00
|
|
|
COPY nginx/nginx.conf ${TFW_NGINX_CONF}
|
|
|
|
COPY nginx/default.conf ${TFW_NGINX_DEFAULT}
|
2018-04-17 13:13:27 +00:00
|
|
|
COPY nginx/components/ ${TFW_NGINX_COMPONENTS}
|
2019-07-24 13:50:41 +00:00
|
|
|
COPY tfw ${TFW_LIB_DIR}/tfw
|
2018-06-29 20:53:44 +00:00
|
|
|
COPY supervisor/tfw_server.py ${TFW_SERVER_DIR}/
|
2019-09-05 16:16:53 +00:00
|
|
|
COPY --from=frontend /srv/dist ${TFW_FRONTEND_DIR}
|
2018-02-05 14:51:53 +00:00
|
|
|
|
2019-08-15 15:03:15 +00:00
|
|
|
VOLUME ["${TFW_LOGS_DIR}", "${TFW_PIPES_DIR}"]
|
2018-04-04 15:43:18 +00:00
|
|
|
|
2018-04-16 13:13:12 +00:00
|
|
|
ONBUILD ARG BUILD_CONTEXT="solvable"
|
2018-02-11 14:20:06 +00:00
|
|
|
|
2018-04-17 15:44:38 +00:00
|
|
|
ONBUILD COPY ${BUILD_CONTEXT}/nginx/ ${TFW_NGINX_COMPONENTS}
|
|
|
|
ONBUILD COPY ${BUILD_CONTEXT}/supervisor/ ${TFW_SUPERVISORD_COMPONENTS}
|
2018-02-11 14:20:06 +00:00
|
|
|
|
2018-04-04 15:43:18 +00:00
|
|
|
ONBUILD RUN for f in "${TFW_NGINX_DEFAULT}" ${TFW_NGINX_COMPONENTS}/*.conf; do \
|
2018-03-23 13:44:02 +00:00
|
|
|
envsubst "$(printenv | cut -d= -f1 | grep TFW_ | sed -e 's/^/$/g')" < $f > $f~ && mv $f~ $f ;\
|
|
|
|
done
|
2019-07-24 13:50:41 +00:00
|
|
|
ONBUILD VOLUME ["/etc/nginx", "/var/lib/nginx", "/var/log/nginx", "${TFW_LIB_DIR}/tfw"]
|
2018-02-11 13:15:10 +00:00
|
|
|
|
2019-08-27 11:13:33 +00:00
|
|
|
ENTRYPOINT ["/bin/init", "--"]
|
2018-08-01 12:17:02 +00:00
|
|
|
CMD exec supervisord --nodaemon --configuration ${TFW_SUPERVISORD_CONF}
|