Spaces:
Sleeping
Sleeping
FROM tensorflow/tensorflow:2.12.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"] | |