6 lines
265 B
Docker
6 lines
265 B
Docker
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
|
|
|