GameNet-1 / Dockerfile
MAS-AI-0000's picture
Model inference files and hf setup
dcfcfbb verified
raw
history blame contribute delete
453 Bytes
# Use a minimal Python 3.12 base image
FROM python:3.12-slim
# Set working directory inside the container
WORKDIR /code
# Copy requirements
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy your full project code
COPY . .
# Run FastAPI using uvicorn
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]