This repository has been archived on 2025-06-07. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
hugo-asciidoc-docker-ci/Dockerfile
Marko Korhonen 0241ed2964
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Fix pacman commands
2024-01-27 22:06:25 +02:00

12 lines
291 B
Docker

FROM archlinux:latest
# Update base
RUN pacman -Syu --noconfirm
# Install needed dependencies
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