hAIrcut / Dockerfile
kauabarros-24
CHORE: New model
8f09942
raw
history blame contribute delete
225 Bytes
FROM pytorch/pytorch:2.3.0-cuda12.1-cudnn8-runtime
WORKDIR /src
COPY . .
RUN pip install --upgrade pip && pip install -r requirements.txt
EXPOSE 8000
CMD ["uvicorn", "src.main:app", "--host", "0.0.0.0", "--port", "8000"]