mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-22 22:51:32 +00:00
Reorder of Dockerfile for painless configuration of envvars
This commit is contained in:
parent
2b306efb04
commit
6b6f4942c0
14
Dockerfile
14
Dockerfile
@ -35,6 +35,12 @@ RUN curl -fSL -o pyenv-installer ${PYENV_INSTALLER_URL} &&\
|
|||||||
pyenv global ${PYTHON_VERSION} &&\
|
pyenv global ${PYTHON_VERSION} &&\
|
||||||
pip install tornado pyzmq transitions
|
pip install tornado pyzmq transitions
|
||||||
|
|
||||||
|
USER root
|
||||||
|
WORKDIR /data/
|
||||||
|
COPY src/frontend /data/
|
||||||
|
RUN yarn install --frozen-lockfile
|
||||||
|
RUN yarn build --no-progress
|
||||||
|
|
||||||
ENV TFW_WEB_PORT=4242
|
ENV TFW_WEB_PORT=4242
|
||||||
ENV TFW_LOGIN_APP_PORT=6666
|
ENV TFW_LOGIN_APP_PORT=6666
|
||||||
ENV TFW_PUBLIC_PORT=8888
|
ENV TFW_PUBLIC_PORT=8888
|
||||||
@ -52,18 +58,12 @@ ENV TFW_SUPERVISORD_CONF="/etc/supervisor/supervisord.conf"
|
|||||||
|
|
||||||
ENV PYTHONPATH=${TFW_LIB_DIR}
|
ENV PYTHONPATH=${TFW_LIB_DIR}
|
||||||
|
|
||||||
USER root
|
|
||||||
COPY src/nginx /etc/nginx
|
COPY src/nginx /etc/nginx
|
||||||
RUN chown -R ${AVATAO_USER}: /var/log/nginx /var/lib/nginx && \
|
RUN chown -R ${AVATAO_USER}: /var/log/nginx /var/lib/nginx && \
|
||||||
# nginx runs as a regular user, and can't write to /run
|
# 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 && \
|
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')" \
|
envsubst "$(printenv | cut -d= -f1 | grep TFW_ | sed -e 's/^/$/g')" \
|
||||||
< /etc/nginx/sites-available/default > /etc/nginx/sites-available/default
|
< /etc/nginx/sites-available/default > /etc/nginx/sites-available/default &&\
|
||||||
|
|
||||||
WORKDIR /data/
|
|
||||||
COPY src/frontend /data/
|
|
||||||
RUN yarn install --frozen-lockfile
|
|
||||||
RUN yarn build --no-progress && \
|
|
||||||
mv /data/dist ${TFW_FRONTEND_DIR}
|
mv /data/dist ${TFW_FRONTEND_DIR}
|
||||||
|
|
||||||
USER ${AVATAO_USER}
|
USER ${AVATAO_USER}
|
||||||
|
Loading…
Reference in New Issue
Block a user