2018-01-11 17:17:17 +00:00
|
|
|
FROM node:8 as ngbuild
|
2018-01-11 16:47:44 +00:00
|
|
|
|
|
|
|
WORKDIR /data/
|
|
|
|
|
|
|
|
COPY src/frontend /data/
|
|
|
|
RUN yarn install --frozen-lockfile
|
|
|
|
RUN yarn build --no-progress
|
|
|
|
|
2017-11-21 12:19:37 +00:00
|
|
|
FROM avatao/ubuntu:16.04
|
|
|
|
|
2018-01-12 13:10:30 +00:00
|
|
|
ENV TFW_WEB_PORT=4242
|
|
|
|
ENV TFW_LOGIN_APP_PORT=6666
|
|
|
|
ENV TFW_PUBLIC_PORT=8888
|
|
|
|
ENV TFW_SUPERVISOR_HTTP_PORT=9001
|
|
|
|
|
|
|
|
EXPOSE ${TFW_PUBLIC_PORT}
|
|
|
|
|
|
|
|
ENV TFW_EVENT_HANDLERS_DIR="/opt/event_handlers"
|
|
|
|
ENV TFW_APP_DIR="/srv/app"
|
|
|
|
ENV TFW_FRONTEND_DIR="/srv/frontend"
|
|
|
|
ENV TFW_LOGIN_APP_DIR="/tmp/source_code_server"
|
|
|
|
ENV TFW_LIB_DIR="/usr/local/lib/"
|
|
|
|
|
|
|
|
ENV TFW_SUPERVISORD_CONF="/etc/supervisor/supervisord.conf"
|
|
|
|
|
2017-11-21 12:19:37 +00:00
|
|
|
RUN apt-get update && \
|
|
|
|
apt-get install -qy \
|
|
|
|
supervisor \
|
|
|
|
libzmq5 \
|
2018-01-10 15:55:48 +00:00
|
|
|
nginx \
|
|
|
|
# Provides envsubst
|
|
|
|
gettext-base \
|
2017-12-04 13:55:08 +00:00
|
|
|
# These dependencies are required to compile the bz2, readline, sqlite3
|
|
|
|
# Python packages
|
2017-11-21 12:19:37 +00:00
|
|
|
libbz2-dev \
|
|
|
|
libreadline-dev \
|
2018-01-12 13:10:30 +00:00
|
|
|
libsqlite3-dev
|
|
|
|
|
|
|
|
COPY src/nginx /etc/nginx
|
|
|
|
|
|
|
|
RUN chown -R ${AVATAO_USER}: /var/log/nginx /var/lib/nginx && \
|
2018-01-10 15:55:48 +00:00
|
|
|
# nginx runs as a regular user, and can't write to /run
|
2018-01-12 13:10:30 +00:00
|
|
|
sed -i 's#pid /run/nginx.pid;#pid /tmp/nginx.pid;#g' /etc/nginx/nginx.conf && \
|
|
|
|
envsubst "$(printenv | cut -d= -f1 | grep TFW_ | sed -e 's/^/$/g')" \
|
|
|
|
< /etc/nginx/sites-available/default > /etc/nginx/sites-available/default
|
2017-11-21 12:19:37 +00:00
|
|
|
|
2017-12-04 16:01:12 +00:00
|
|
|
USER ${AVATAO_USER}
|
2017-11-21 12:19:37 +00:00
|
|
|
|
2018-01-12 12:42:04 +00:00
|
|
|
WORKDIR /home/${AVATAO_USER}
|
|
|
|
COPY .pyenvrc .
|
2018-01-12 13:10:57 +00:00
|
|
|
ARG PYTHON_VERSION="3.6.4"
|
2018-01-12 12:42:04 +00:00
|
|
|
# no GitHub releases are available, so current tip of head is hardcoded to avoid surprises
|
2018-01-12 13:10:57 +00:00
|
|
|
ARG PYENV_INSTALLER_URL="https://raw.githubusercontent.com/pyenv/pyenv-installer/78cfd4d/bin/pyenv-installer"
|
|
|
|
ARG PYENV_INSTALLER_HASH=9509348b828f0564358fff456f7f693dd9ace351dc3f240854d7685ad8a8e1dd
|
2018-01-12 12:42:04 +00:00
|
|
|
RUN curl -fSL -o pyenv-installer ${PYENV_INSTALLER_URL} && \
|
|
|
|
echo "${PYENV_INSTALLER_HASH} *pyenv-installer" | sha256sum -c - && \
|
|
|
|
bash pyenv-installer && \
|
|
|
|
rm pyenv-installer && \
|
|
|
|
echo "source $HOME/.pyenvrc" >> .bashrc && \
|
|
|
|
. $HOME/.pyenvrc && \
|
2017-11-21 12:19:37 +00:00
|
|
|
pyenv install ${PYTHON_VERSION} && \
|
|
|
|
pyenv global ${PYTHON_VERSION} && \
|
|
|
|
pip install tornado pyzmq transitions
|
|
|
|
|
2018-01-10 15:52:03 +00:00
|
|
|
EXPOSE ${TFW_WEB_PORT}
|
2017-12-05 11:47:47 +00:00
|
|
|
ENV PYTHONPATH=${TFW_LIB_DIR}
|
|
|
|
COPY lib $TFW_LIB_DIR
|
2017-11-27 16:59:05 +00:00
|
|
|
COPY supervisord.conf ${TFW_SUPERVISORD_CONF}
|
2018-01-10 15:54:47 +00:00
|
|
|
COPY src/app ${TFW_APP_DIR}
|
|
|
|
COPY src/event_handlers ${TFW_EVENT_HANDLERS_DIR}
|
2018-01-11 16:47:44 +00:00
|
|
|
COPY --from=ngbuild /data/dist ${TFW_FRONTEND_DIR}
|
2018-01-10 15:55:48 +00:00
|
|
|
|
2017-11-21 12:19:37 +00:00
|
|
|
CMD . "$HOME/.pyenvrc" && exec supervisord --nodaemon
|