From 17c5ade3ce0a888fafb3a375ddf324a38901e5d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krist=C3=B3f=20T=C3=B3th?= Date: Thu, 26 Apr 2018 10:04:56 +0200 Subject: [PATCH] Fix broken HISTFILE due to bash and sh incompabilities --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 63c8cab..2a3d9d4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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}