baseimage-tutorial-framework/Dockerfile

80 lines
3.7 KiB
Docker
Raw Permalink Normal View History

ARG FRONTEND_VERSION
FROM avatao/frontend-tutorial-framework:${FRONTEND_VERSION} as frontend
FROM avatao/debian:buster
ARG FRONTEND_VERSION
LABEL tfw.frontend.version=${FRONTEND_VERSION}
2018-01-11 16:47:44 +00:00
2019-09-05 16:16:53 +00:00
RUN apt-get update &&\
apt-get install -y --no-install-recommends \
2018-02-11 14:20:06 +00:00
supervisor \
ncat \
2018-02-11 14:20:06 +00:00
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/* &&\
ln -sf /bin/bash /bin/sh
2018-01-11 16:47:44 +00:00
COPY requirements.txt /tmp
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
ENV TFW_PUBLIC_PORT=8888 \
TFW_WEB_PORT=4242 \
TFW_LOGIN_APP_PORT=6666 \
TFW_TERMINAL_PORT=7878 \
TFW_TERMINAL_FALLBACK_PORT=7879 \
TFW_SUPERVISOR_HTTP_PORT=9001 \
TFW_PUB_PORT=7654 \
2019-05-27 18:11:03 +00:00
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
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" \
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" \
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" \
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" \
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}
COPY nginx/nginx.conf ${TFW_NGINX_CONF}
COPY nginx/default.conf ${TFW_NGINX_DEFAULT}
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}
2019-08-15 15:03:15 +00:00
VOLUME ["${TFW_LOGS_DIR}", "${TFW_PIPES_DIR}"]
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
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-11-13 11:52:20 +00:00
ONBUILD VOLUME ["/etc/nginx", "/etc/supervisor", "/var/lib/nginx", "/var/log/nginx", "${TFW_LIB_DIR}/tfw"]
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}