PhoenixStormJr's picture
Upload Dockerfile with huggingface_hub
9e1b0bc verified
raw
history blame
164 Bytes
# syntax=docker/dockerfile:1
FROM python:3.10-bullseye
EXPOSE 7860
WORKDIR /app
COPY . .
RUN pip3 install -r requirements.txt
CMD ["python3", "infer-web.py"]