From bfff843458fd17623ed478e1ddaee520c13b6b4c Mon Sep 17 00:00:00 2001 From: Alessandro Cerioni <acerioni@grandlyon.com> Date: Sun, 27 Jan 2019 15:06:40 +0100 Subject: [PATCH] Bugfix. Preventing config.yaml from being copied from the local folder to within the container during Docker build. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4b7003f..5d128fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ WORKDIR /app COPY requirements.txt . COPY *.py ./ -COPY config.yaml . +#COPY config.yaml . COPY es_template.py . COPY utils/*.py ./utils/ -- GitLab