dockers/website/Dockerfile

6 lines
265 B
Docker
Raw Normal View History

2024-09-03 22:40:14 +00:00
FROM gitea/runner-images:ubuntu-latest
RUN wget https://github.com/gohugoio/hugo/releases/download/v0.135.0/hugo_0.135.0_linux-amd64.deb && \
apt-get install -y ./hugo_0.135.0_linux-amd64.deb && \
rm -rf var/lib/{apt,dpkg,cache,log} hugo_0.135.0_linux-arm64.deb
2020-10-26 19:59:09 +00:00