From 29244c0ecabbd2c0b9592998cfd0623e241e6d54 Mon Sep 17 00:00:00 2001 From: surtur Date: Mon, 2 Mar 2020 00:42:59 +0100 Subject: [PATCH] initial commit --- Dockerfile | 7 +++++++ README.md | 12 ++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 Dockerfile create mode 100644 README.md 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