baseimage-tutorial-framework/Dockerfile

78 lines
3.8 KiB
Docker
Raw Normal View History

FROM avatao/debian:buster
2018-01-11 16:47:44 +00:00
2018-02-11 14:20:06 +00:00
RUN curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - &&\
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - &&\
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list &&\
2018-02-11 14:20:06 +00:00
apt-get update &&\
apt-get install -y --no-install-recommends \
2018-02-11 14:20:06 +00:00
nodejs \
yarn \
supervisor \
libzmq5 \
nginx \
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
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 \
TFW_PUBLISHER_PORT=7654 \
TFW_RECEIVER_PORT=8765
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-02-11 14:20:06 +00:00
TFW_TERMINADO_DIR="/tmp/terminado_server" \
2018-03-03 21:46:14 +00:00
TFW_FRONTEND_DIR="/srv/frontend" \
2018-06-29 20:53:44 +00:00
TFW_SERVER_DIR="/srv/.tfw" \
TFW_AUTH_KEY="/tmp/tfw-auth.key" \
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
COPY bashrc /tmp
RUN echo "export HISTFILE=${TFW_HISTFILE}" >> /tmp/bashrc &&\
cat /tmp/bashrc >> /home/${AVATAO_USER}/.bashrc
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}
COPY lib LICENSE ${TFW_LIB_DIR}/
2018-06-29 20:53:44 +00:00
COPY supervisor/tfw_server.py ${TFW_SERVER_DIR}/
RUN for dir in "${TFW_LIB_DIR}"/{tfw,tao,envvars} "/etc/nginx" "/etc/supervisor"; do \
2018-06-29 20:53:44 +00:00
chown -R root:root "$dir" && chmod -R 700 "$dir"; \
done
ONBUILD ARG BUILD_CONTEXT="solvable"
2018-03-23 13:44:02 +00:00
ONBUILD ARG NOFRONTEND=""
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
ONBUILD VOLUME ["/etc/nginx", "/var/lib/nginx", "/var/log/nginx", "${TFW_LIB_DIR}/envvars", "${TFW_LIB_DIR}/tfw"]
2018-03-23 13:44:02 +00:00
ONBUILD COPY ${BUILD_CONTEXT}/frontend /data/
2018-03-23 20:29:27 +00:00
ONBUILD RUN test -z "${NOFRONTEND}" && cd /data && yarn install --frozen-lockfile || :
ONBUILD RUN test -z "${NOFRONTEND}" && cd /data && yarn build --no-progress || :
ONBUILD RUN test -z "${NOFRONTEND}" && mv /data/dist ${TFW_FRONTEND_DIR} && rm -rf /data || :
2018-01-10 15:55:48 +00:00
CMD exec supervisord --nodaemon