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