From ae5e045173ba05d13faa58b8c56d9c407082aad8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A1lint=20Bokros?= Date: Tue, 5 Dec 2017 12:47:47 +0100 Subject: [PATCH] Rename lib folder's envvar --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 044c553..3327b61 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,9 +29,9 @@ ENV TFW_EVENT_HANDLERS_DIR="/opt/event_handlers" COPY src/event_handlers ${TFW_EVENT_HANDLERS_DIR} # Copy config -ENV TFW_CONFIG_DIR="/usr/local/lib/" -ENV PYTHONPATH=${TFW_CONFIG_DIR} -COPY lib $TFW_CONFIG_DIR +ENV TFW_LIB_DIR="/usr/local/lib/" +ENV PYTHONPATH=${TFW_LIB_DIR} +COPY lib $TFW_LIB_DIR ENV TFW_SUPERVISORD_CONF="/etc/supervisor/supervisord.conf" COPY supervisord.conf ${TFW_SUPERVISORD_CONF}