From 4abf6166378540776db90fae52ba676baf97cc0f Mon Sep 17 00:00:00 2001 From: Martin Quarda Date: Thu, 24 Oct 2024 13:58:35 +0200 Subject: [PATCH] fix --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 88badea..b57716e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ WORKDIR /alkator COPY . . run pacman -Syu python python-weasyprint python-dateutil python-django npm --noconfirm RUN sudo -u ab -D~ bash -c 'yay -Syu --removemake --needed --noprogressbar --noconfirm python-daphne' -RUN cd frontent && npm install && npm run build && rm -rf node_modules && cd .. +RUN cd frontend && npm install && npm run build && rm -rf node_modules && cd .. RUN python manage.py collectstatic EXPOSE 8002 CMD ["/usr/bin/daphne", "alkator.asgi:application", "-p", "8002"]