Files
ErrorNoCord/Dockerfile
ErrorNoInternet 4185723b8d feat: add (incomplete) nix flake
dave.py isn't packaged yet. Will try to do this myself but dealing with
vcpkg is a bit annoying.
2026-03-23 09:00:35 -04:00

11 lines
201 B
Docker

FROM python:3.13-alpine
RUN apk --no-cache add ffmpeg gcc linux-headers musl-dev opus python3-dev
WORKDIR /bot
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "-m", "errornocord.main"]