deepvc / Dockerfile
JARVIS-JI's picture
Update Dockerfile
274c91c verified
raw
history blame contribute delete
229 Bytes
FROM python:3.11-slim
WORKDIR /app
# Copy files
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV PYTHONUNBUFFERED=1
# Hugging Face requires binding to $PORT
CMD ["python", "server.py"]