diff --git a/Dockerfile b/Dockerfile index 36e0f79..66f9887 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,12 @@ FROM archlinux:latest -RUN pacman -Syu --noconfirm \ - go \ - hugo \ - asciidoctor \ - ruby-rouge \ - npm \ - git +# Update base +RUN pacman -Syu --noconfirm + +# Install needed dependencies +RUN pacman -S go +RUN pacman -S hugo +RUN pacman -S asciidoctor +RUN pacman -S ruby-rouge +RUN pacman -S npm +RUN pacman -S git