CoolFace
Apppublic

Maple37/apple

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
Dockerfile19 linesDownload Raw Back to root
1# 选择基础镜像2FROM python:3.123 4WORKDIR /app5RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*6RUN apt-get install git7ENV PATH="/root/.local/bin:${PATH}"8RUN curl -Ls https://astral.sh/uv/install.sh | sh9RUN git clone https://github.com/su-kaka/gcli2api.git10WORKDIR ./gcli2api11RUN mkdir -p geminicli/creds12RUN chmod 777 -R geminicli/creds13RUN git pull14RUN uv sync15 16EXPOSE 786117CMD ["./.venv/bin/python3","web.py"]18 19