Merge pull request #449 from lytt925/main

fix(docker): update Dockerfile to copy only requirements.txt
This commit is contained in:
yihong 2025-03-12 11:04:47 +08:00 committed by GitHub
commit a1f0185043
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,7 +4,7 @@ RUN apt-get update
WORKDIR /app WORKDIR /app
COPY requirements.txt setup.py . COPY requirements.txt .
RUN pip install -r /app/requirements.txt RUN pip install -r /app/requirements.txt