CoolFace
Apppublic

Rohannk/datacenter-openenv

sourceHugging Facemitupdated 6mo agoView on Hugging Face
1likes
Dockerfile14 linesDownload Raw Back to root
1FROM python:3.11-slim2 3# Set working directory4WORKDIR /app5 6# Copy requirement list and install7COPY requirements.txt .8RUN pip install --no-cache-dir -r requirements.txt9 10# Copy all other files (including inference.py)11COPY . .12 13# Run the inference script directly14CMD ["python", "inference.py"]