hugo-asciidoc-docker-ci/Dockerfile

20 lines
615 B
Docker
Raw Normal View History

2024-01-27 21:35:51 +02:00
FROM archlinux:latest
# Add AUR repo
RUN pacman-key --init && \
pacman-key -r marko@korhonen.cc && \
pacman-key --lsign-key F2B9F713E7ED627336DD85E444FA3F28CD931BB0 && \
printf "\n\n[korhonen_aur]\nServer = https://index.korhonen.cc/repo/arch_linux/korhonen_aur/x86_64\n" >> /etc/pacman.conf
# Update base
RUN pacman -Syu --noconfirm
# Install needed dependencies
2024-01-27 22:06:25 +02:00
RUN pacman -S go --noconfirm
RUN pacman -S hugo --noconfirm
RUN pacman -S asciidoctor --noconfirm
RUN pacman -S ruby-rouge --noconfirm
RUN pacman -S npm --noconfirm
RUN pacman -S git --noconfirm
2024-01-28 21:03:26 +02:00
RUN pacman -S ruby-asciidoctor-html5s --noconfirm