FROM archlinux:latest WORKDIR /site COPY . . RUN pacman -Sy --noconfirm python python-pip RUN pip install --break-system-packages -r requirements.txt CMD ["waitress-serve", "--port=8000", "app.app"]