dave.py isn't packaged yet. Will try to do this myself but dealing with vcpkg is a bit annoying.
11 lines
201 B
Docker
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"]
|