a
da7df0fc45
fix buffered output and missed var name fix missing comma change dockerfile to install ffmpeg and dependencies on top of archlinux fix pacman not syncing fix pacman not syncing fix pacman not autoconfirming fix missing pip
7 lines
200 B
Docker
7 lines
200 B
Docker
FROM archlinux:latest
|
|
WORKDIR /umi
|
|
COPY . .
|
|
RUN pacman -Syu --noconfirm
|
|
RUN pacman -S --noconfirm python-pip libffi libsodium ffmpeg
|
|
RUN pip install -r requirements.txt
|
|
CMD ["python", "-u", "app.py"] |