From 42025e98e497a9d8d0bf560ca99e62da4b1474c80a0870211093b86838a9e38a Mon Sep 17 00:00:00 2001 From: Nyx Date: Sun, 6 Apr 2025 00:14:07 -0500 Subject: [PATCH] fix --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d6bf90f..c7dc767 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"]