fix(dockerfile): bug fix for building Docker image (#291)

Co-authored-by: bigbyto <bigbyto@Bigbytos-iMac.local>
This commit is contained in:
bigbyto 2023-06-02 11:01:04 +08:00 committed by GitHub
parent 02c2f13737
commit 866278b7b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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