tranny / Dockerfile
Mbonea's picture
jwt works the routes are secured!
591d823
raw
history blame
548 Bytes
# Builder stage
FROM python:latest as builder
WORKDIR /srv
# Install dependencies and Python packages
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 the application code
RUN useradd -m -u 1000 user
USER user
COPY --chown=user . /srv
# Command to run the application
CMD uvicorn App.app:app --host 0.0.0.0 --port 7860 & celery -A App.Worker.celery worker -c 8 --loglevel=info
# Expose the server port
EXPOSE 7860