Install supervistor in the workspace

This commit is contained in:
Alone
2019-10-16 18:18:03 +08:00
parent 04c6aaf338
commit 6764a88fe6
3 changed files with 14 additions and 0 deletions

View File

@ -957,6 +957,18 @@ RUN if [ ${INSTALL_POWERLINE} = true ]; then \
;fi \
;fi
###########################################################################
# SUPERVISOR:
###########################################################################
ARG INSTALL_SUPERVISOR=false
RUN if [ ${INSTALL_SUPERVISOR} = true ]; then \
if [ ${INSTALL_PYTHON} = true ]; then \
python -m pip install --upgrade supervisor && \
echo_supervisord_conf > /etc/supervisord.conf \
;fi \
;fi
USER laradock
###########################################################################