Use nginx to serve everything

This commit is contained in:
Bálint Bokros
2018-01-10 16:55:48 +01:00
parent 6436953eea
commit a4d101883e
3 changed files with 45 additions and 1 deletions

View File

@ -5,11 +5,17 @@ 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
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}
@ -43,5 +49,15 @@ 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 src/frontend/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