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"]
|