Initial commit

This commit is contained in:
2025-12-08 17:48:45 +00:00
commit 19e154fed4
4 changed files with 85 additions and 0 deletions

20
Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
FROM python:3.14-slim
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y ffmpeg && \
rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache-dir discord.py pynacl
WORKDIR /app
COPY main.py .
COPY sus_trimmed.mp3 .
RUN useradd -m appuser && \
chown -R appuser:appuser /app
USER appuser
CMD ["python", "-u", "main.py"]