Files
homelab/userbot/.unused/Cloudfile
T
2026-06-19 23:20:23 +02:00

11 lines
316 B
Plaintext

FROM python:3.11
WORKDIR /app
COPY . /app
RUN apt-get -qq update && apt-get -qq install -y git wget ffmpeg mediainfo \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN python -m venv --copies /opt/venv
ENV PATH="/opt/venv/bin:$PATH"
RUN pip install --no-cache-dir -r requirements.txt
CMD ["bash", "cloud.sh"]