mirror of
https://github.com/chaitin/SafeLine.git
synced 2026-01-31 22:04:02 +08:00
11 lines
233 B
Docker
11 lines
233 B
Docker
FROM ghcr.io/astral-sh/uv:python3.13-alpine
|
|
|
|
COPY requirements.txt /app/requirements.txt
|
|
|
|
WORKDIR /app
|
|
|
|
RUN uv pip sync requirements.txt --system -i https://pypi.tuna.tsinghua.edu.cn/simple
|
|
|
|
COPY . /app
|
|
|
|
CMD ["python", "__main__.py"] |