Fix broken HISTFILE due to bash and sh incompabilities

This commit is contained in:
Kristóf Tóth 2018-04-26 10:04:56 +02:00
parent f4310c855f
commit 17c5ade3ce
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ ENV PYTHONPATH="/usr/local/lib" \
PROMPT_COMMAND="history -a"
COPY bashrc /tmp
RUN echo "export HISTFILE=${TFW_HISTFILE}\n" >> /tmp/bashrc &&\
RUN echo "export HISTFILE=${TFW_HISTFILE}" >> /tmp/bashrc &&\
cat /tmp/bashrc >> /home/${AVATAO_USER}/.bashrc
COPY supervisor/supervisord.conf ${TFW_SUPERVISORD_CONF}