9 lines
187 B
Docker
9 lines
187 B
Docker
FROM python:3.11.4-bookworm
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt ./
|
|
RUN pip install --no-cache-dir -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
|
|
|
|
COPY m3e-base m3e-base
|