mirror of
https://github.com/yihong0618/bilingual_book_maker.git
synced 2025-06-04 02:20:18 +00:00
13 lines
181 B
Docker
13 lines
181 B
Docker
FROM python:3.10-slim
|
|
|
|
RUN apt-get update
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt setup.py .
|
|
|
|
RUN pip install -r /app/requirements.txt
|
|
|
|
COPY . .
|
|
|
|
ENTRYPOINT ["python3", "make_book.py"] |