baseimage-tutorial-framework/Dockerfile
2018-01-11 17:47:47 +01:00

72 lines
2.0 KiB
Docker

FROM node:9 as ngbuild
WORKDIR /data/
COPY src/frontend /data/
RUN yarn install --frozen-lockfile
RUN yarn build --no-progress
FROM avatao/ubuntu:16.04
# Install dependencies
RUN apt-get update && \
apt-get install -qy \
supervisor \
libzmq5 \
nginx \
# Provides envsubst
gettext-base \
# These dependencies are required to compile the bz2, readline, sqlite3
# Python packages
libbz2-dev \
libreadline-dev \
libsqlite3-dev && \
chown -R ${AVATAO_USER}: /var/log/nginx /var/lib/nginx && \
# nginx runs as a regular user, and can't write to /run
sed -i 's#pid /run/nginx.pid;#pid /tmp/nginx.pid;#g' /etc/nginx/nginx.conf
USER ${AVATAO_USER}
COPY .pyenvrc /home/${AVATAO_USER}/.pyenvrc
ENV PYTHON_VERSION="3.6.4"
RUN curl -L https://raw.githubusercontent.com/pyenv/pyenv-installer/master/bin/pyenv-installer | bash && \
echo "source $HOME/.pyenvrc" >> "$HOME/.bashrc" && \
. "$HOME/.pyenvrc" && \
pyenv install ${PYTHON_VERSION} && \
pyenv global ${PYTHON_VERSION} && \
pip install tornado pyzmq transitions
ENV TFW_WEB_PORT=4242
EXPOSE ${TFW_WEB_PORT}
ENV TFW_LOGIN_APP_DIR="/tmp/source_code_server"
ENV TFW_LOGIN_APP_PORT=6666
# Copy config
ENV TFW_LIB_DIR="/usr/local/lib/"
ENV PYTHONPATH=${TFW_LIB_DIR}
COPY lib $TFW_LIB_DIR
ENV TFW_SUPERVISORD_CONF="/etc/supervisor/supervisord.conf"
ENV TFW_SUPERVISOR_HTTP_PORT=9001
COPY supervisord.conf ${TFW_SUPERVISORD_CONF}
ENV TFW_APP_DIR="/srv/app"
COPY src/app ${TFW_APP_DIR}
ENV TFW_EVENT_HANDLERS_DIR="/opt/event_handlers"
COPY src/event_handlers ${TFW_EVENT_HANDLERS_DIR}
ENV TFW_FRONTEND_DIR="/srv/frontend"
COPY --from=ngbuild /data/dist ${TFW_FRONTEND_DIR}
ENV TFW_PUBLIC_PORT=8888
EXPOSE ${TFW_PUBLIC_PORT}
COPY src/nginx /etc/nginx
USER root
RUN envsubst "$(printenv | cut -d= -f1 | grep TFW_ | sed -e 's/^/$/g')" \
< /etc/nginx/sites-available/default > /etc/nginx/sites-available/default
USER ${AVATAO_USER}
CMD . "$HOME/.pyenvrc" && exec supervisord --nodaemon