umi/Dockerfile
a 6a7ec8eef7 support more dice notation
squashed commits:
- fix unpacking regex matches for dice notation
- fix missing cast to integer
- fix raw result output
- fix formatting of chat message for raw result
- faster dockerfile builds?
- fancier output format
- fix variable name collision
- remove unnecessary newline
- more robust handling of dF
- fix typo
- fix formatting
- use blank character for dF
2023-01-17 10:47:18 -06:00

8 lines
226 B
Docker

FROM archlinux:latest
WORKDIR /umi
COPY "requirements.txt" .
RUN pacman -Syu --noconfirm
RUN pacman -S --noconfirm python-pip libffi libsodium ffmpeg
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "-u", "app.py"]