mirror of
https://github.com/pvlnes/homelab.git
synced 2026-04-05 18:21:46 +00:00
19 lines
322 B
Docker
19 lines
322 B
Docker
FROM python:3.11-slim
|
|
|
|
# install ffmpeg
|
|
RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
# create persistent folder
|
|
RUN mkdir -p /data/audio
|
|
|
|
ENV PYTHONUNBUFFERED=1
|
|
|
|
CMD ["python", "bot.py"]
|