proxy-test / Dockerfile
zk-Armor's picture
Upload folder using huggingface_hub
39bf367 verified
Raw
History Blame Contribute Delete
168 Bytes
FROM python:3.12-slim
RUN apt-get update -qq && apt-get install -y -qq curl >/dev/null 2>&1
WORKDIR /app
COPY server.py /app/server.py
CMD ["python", "-u", "server.py"]