fix(docker): update Dockerfile to copy only requirements.txt

This commit is contained in:
Yen-Ting Li 2025-03-12 10:54:00 +08:00
parent 81f9b5280b
commit 68f21744f5

View File

@ -4,10 +4,10 @@ RUN apt-get update
WORKDIR /app
COPY requirements.txt setup.py .
COPY requirements.txt .
RUN pip install -r /app/requirements.txt
COPY . .
ENTRYPOINT ["python3", "make_book.py"]
ENTRYPOINT ["python3", "make_book.py"]