vishgg's picture
Upload folder using huggingface_hub
bca0517 verified
raw
history blame contribute delete
329 Bytes
FROM python:3.11-slim
WORKDIR /app
# Install git for openenv-core from GitHub
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 8000
CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "8000"]