2022-12-12 12:01:52 +00:00
|
|
|
FROM archlinux:latest
|
|
|
|
WORKDIR /umi
|
2023-01-11 11:44:04 +00:00
|
|
|
COPY "requirements.txt" .
|
2022-12-12 12:01:52 +00:00
|
|
|
RUN pacman -Syu --noconfirm
|
|
|
|
RUN pacman -S --noconfirm python-pip libffi libsodium ffmpeg
|
|
|
|
RUN pip install -r requirements.txt
|
2023-01-11 11:44:04 +00:00
|
|
|
COPY . .
|
2022-12-12 12:01:52 +00:00
|
|
|
CMD ["python", "-u", "app.py"]
|