initial commit
This commit is contained in:
commit
29244c0eca
7
Dockerfile
Normal file
7
Dockerfile
Normal file
@ -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
|
12
README.md
Normal file
12
README.md
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user