Spaces:
Runtime error
Runtime error
File size: 186 Bytes
2d37052 |
1 2 3 4 5 6 7 8 9 10 |
FROM python:3.12
WORKDIR /code
ENV HF_HOME=/data/.huggingface
COPY requirements.txt /code/requirements.txt
RUN pip install -r requirements.txt
COPY . /code
CMD ["python", "server.py"] |