alkator/Dockerfile
2024-10-31 11:34:17 +01:00

10 lines
471 B
Docker

FROM greyltc/archlinux-aur:yay
WORKDIR /alkator
COPY alkator alkator
COPY alkatorapi alkatorapi
RUN pacman -Syu python python-weasyprint python-dateutil python-django python-requests python-pip --noconfirm
RUN sudo -u ab -D~ bash -c 'yay -Syu --removemake --needed --noprogressbar --noconfirm python-daphne'
RUN pip install django_prometheus --break-system-packages
EXPOSE 8005
CMD ["/usr/bin/daphne", "alkator.asgi:application", "-b", "0.0.0.0", "-p", "8005"]