BackendJunsen / Dockerfile
2nzi's picture
Upload 2 files
77d4891 verified
raw
history blame
700 Bytes
# FROM python:3.9
# WORKDIR /code
# COPY ./requirements.txt /code/requirements.txt
# RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
# COPY . /code
# CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
# Utiliser une image Python officielle
FROM python:3.9-slim
# Installer les dépendances système nécessaires
RUN apt-get update && apt-get install -y \
ffmpeg \
libsm6 \
libxext6 \
libgl1-mesa-glx \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /code
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]