atin5551's picture
Add Docker runtime files for Space
5885d15
raw
history blame contribute delete
232 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY requirements-space.txt .
RUN pip install --no-cache-dir -r requirements-space.txt
COPY . .
EXPOSE 7860
CMD ["uvicorn", "openenv_wrapper.server.app:app", "--host", "0.0.0.0", "--port", "7860"]