From 866278b7b7f7555bc7cc80984bea23d8abd3549f Mon Sep 17 00:00:00 2001 From: bigbyto Date: Fri, 2 Jun 2023 11:01:04 +0800 Subject: [PATCH] fix(dockerfile): bug fix for building Docker image (#291) Co-authored-by: bigbyto --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d1a2233..494a59e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ RUN apt-get update WORKDIR /app -COPY requirements.txt . +COPY requirements.txt setup.py . RUN pip install -r /app/requirements.txt