website/Dockerfile_hugo

8 lines
257 B
Text
Raw Normal View History

2021-05-04 20:57:45 +02:00
FROM debian:buster-slim
2022-12-08 09:43:48 +01:00
2021-05-04 20:57:45 +02:00
RUN apt-get update && \
apt-get upgrade -y && \
2022-12-08 09:43:48 +01:00
apt-get install -y wget git && \
2021-05-04 20:57:45 +02: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