This commit is contained in:
Nyx 2025-04-06 00:14:07 -05:00
parent 6436bbf831
commit 42025e98e4

View file

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