mirror of
https://github.com/vvbbnn00/WARP-Clash-API.git
synced 2026-06-29 21:00:52 +08:00
10 lines
211 B
Docker
10 lines
211 B
Docker
FROM python:3.11-alpine
|
|
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN pip install --no-cache-dir -r requirements.txt -i https://mirrors.ustc.edu.cn/pypi/web/simple
|
|
RUN chmod +x ./scripts/*.sh
|
|
|
|
CMD ["/bin/sh", "./scripts/run.sh"]
|
|
|