mirror of
https://github.com/xiaoyaDev/xiaoya-alist.git
synced 2026-09-19 09:40:43 +08:00
7 lines
145 B
Docker
7 lines
145 B
Docker
FROM python:3.12-alpine3.20
|
|
|
|
COPY --chmod=755 . /
|
|
|
|
RUN pip install --no-cache --upgrade pip && \
|
|
pip install --no-cache -r /requirements.txt
|