commit 29244c0ecabbd2c0b9592998cfd0623e241e6d54 Author: surtur Date: Mon Mar 2 00:42:59 2020 +0100 initial commit diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..d3035bb --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM archlinux +RUN pacman -Syu --noconfirm --needed wget tar git \ + && pacman -Scc \ + && rm -rfv /var/cache/pacman/* /var/lib/pacman/sync/* \ + && wget https://github.com/gohugoio/hugo/releases/download/v0.65.3/hugo_extended_0.65.3_Linux-64bit.tar.gz -O hugo.tgz \ + && tar xfv hugo.tgz \ + && mv -v hugo /usr/local/bin/ && rm -v hugo.tgz README.md LICENSE diff --git a/README.md b/README.md new file mode 100644 index 0000000..4e30295 --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +# docker-archlinux-hugo + +This repository provides the Dockerfile to create a Docker image used for web developent using [Hugo](https://gohugo.io) website building framework. + +## What you get +* updated Arch Linux [base image](https://hub.docker.com/_/archlinux) +* wget +* tar +* git + +## Purpose +* web development using `Hugo` upon fresh package base