a
6a7ec8eef7
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
8 lines
226 B
Docker
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"] |