CLAIRS-Environment / Dockerfile
antony647's picture
Upload 5 files
d247d74 verified
raw
history blame contribute delete
162 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir .
EXPOSE 7860
CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "7860"]