From 094ec54b839d9ec18e0b2ccfa78da67c3cf31766 Mon Sep 17 00:00:00 2001 From: gabriel giovanini <1408882-gabrielgio@users.noreply.gitlab.com> Date: Mon, 26 Jul 2021 19:24:12 +0000 Subject: fix: Move importer files to the write folder Without this fix python won't find `importer` module. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1901d51..191dce3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,8 +7,8 @@ WORKDIR /opt COPY requirements.txt . RUN pip install -r requirements.txt -COPY importer/ . +COPY importer/ importer/ COPY main.py . -ENTRYPOINT python main.py \ No newline at end of file +ENTRYPOINT python main.py -- cgit v1.2.3