Spaces:
Sleeping
Sleeping
File size: 253 Bytes
0b89ddd |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
FROM tensorflow/tensorflow:2.10.0-gpu
WORKDIR /app
RUN mkdir -p shops
COPY ./requirements.txt /requirements.txt
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
CMD ["uvicorn", "app.server:app", "--host", "0.0.0.0", "--port", "7860"]
|