mirror of
https://github.com/yihong0618/bilingual_book_maker.git
synced 2025-06-01 00:50:12 +00:00
14 lines
173 B
Docker
14 lines
173 B
Docker
FROM python:3.10-slim
|
|
|
|
RUN apt-get update
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip install -r /app/requirements.txt
|
|
|
|
COPY . .
|
|
|
|
ENTRYPOINT ["python3", "make_book.py"]
|