19 lines
418 B
Plaintext
19 lines
418 B
Plaintext
FROM python:3.12-slim
|
|
|
|
COPY requirements.txt /app/
|
|
|
|
# 设置目标平台参数
|
|
#ARG TARGETPLATFORM
|
|
|
|
# 根据目标平台复制相应架构的库文件
|
|
#COPY lib/${TARGETPLATFORM}/* /lib/
|
|
|
|
COPY lib/* /usr/local/lib/
|
|
|
|
WORKDIR /app
|
|
|
|
RUN pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
|
|
|
|
RUN pip install --index-url https://git.mamahaha.work/api/packages/sangge/pypi/simple/ ecc-rs
|
|
|
|
RUN ldconfig |