ColorfulCSZ/QuickPaw
0
1FROM python:3.11-slim2 3WORKDIR /app4 5RUN apt-get update && apt-get install -y build-essential curl git \6 && rm -rf /var/lib/apt/lists/*7 8COPY requirements.txt ./9RUN pip3 install --no-cache-dir -r requirements.txt10RUN pip3 install --no-cache-dir "qwenpaw==1.1.12.post2" "agent-client-protocol==0.10.1"11 12ENV QWENPAW_WORKING_DIR=/root/.qwenpaw13 14RUN mkdir -p /root/.qwenpaw/workspaces15 16COPY config.json /root/.qwenpaw/config.json17COPY workspace/ /root/.qwenpaw/workspaces/18COPY startup.sh /app/startup.sh19 20EXPOSE 808021HEALTHCHECK CMD curl --fail http://localhost:8080/ || exit 122 23RUN chmod +x /app/startup.sh24ENTRYPOINT ["/app/startup.sh"]25 