From 3c70b1bca076f45c04a2ca7040cba5127fdf5bb8 Mon Sep 17 00:00:00 2001 From: Matthias Bilger Date: Thu, 5 Sep 2019 17:36:01 +0200 Subject: [PATCH] Fixed docker copy command filename --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1aa907b..b602e3e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,5 +6,5 @@ COPY grabconfig.json ./ WORKDIR /app COPY requirements.txt . RUN python -m pip install -r requirements.txt -COPY check.py . -CMD ["python", "./ebgrab.py"] +COPY epgrab.py . +CMD ["python", "./epgrab.py"]