From 3bd7e0f1b4e964ae238fbb97c5c7426dab47f04d Mon Sep 17 00:00:00 2001 From: Martin Quarda Date: Thu, 24 Oct 2024 17:08:46 +0200 Subject: [PATCH] fix requests --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 51a140e..f52fe13 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM greyltc/archlinux-aur:yay WORKDIR /alkator COPY . . -RUN pacman -Syu python python-weasyprint python-dateutil python-django npm --noconfirm +RUN pacman -Syu python python-weasyprint python-dateutil python-django npm python-requests --noconfirm RUN sudo -u ab -D~ bash -c 'yay -Syu --removemake --needed --noprogressbar --noconfirm python-daphne' RUN cd frontend && npm install && npm run build && rm -rf node_modules && cd .. EXPOSE 8005