tranny / Dockerfile
Mbonea's picture
updated the python version
f8444d3
raw
history blame
316 Bytes
# Builder stage
FROM python:3.11.1-slim as builder
WORKDIR /srv
RUN apt-get update && apt-get install -y git ffmpeg aria2 \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . /srv
CMD uvicorn App.app:app --host 0.0.0.0 --port 7860
EXPOSE 7860