website/Dockerfile_hugo

8 lines
257 B
Plaintext
Raw Normal View History

2021-05-04 18:57:45 +00:00
FROM debian:buster-slim
2022-12-08 08:43:48 +00:00
2021-05-04 18:57:45 +00:00
RUN apt-get update && \
apt-get upgrade -y && \
2022-12-08 08:43:48 +00:00
apt-get install -y wget git && \
2021-05-04 18:57:45 +00:00
wget https://github.com/gohugoio/hugo/releases/download/v0.80.0/hugo_extended_0.80.0_Linux-64bit.deb -O hugo.deb && \
dpkg -i hugo.deb