tranny / Dockerfile
Mbonea's picture
added app file and made changes to dockerfile
c17ee23
raw
history blame
265 Bytes
# Builder stage
FROM python:3.9.13-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
EXPOSE 7860