7 lines
157 B
Docker
7 lines
157 B
Docker
FROM gitea/runner-images:ubuntu-latest
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends hugo && \
|
|
rm -rf var/lib/{apt,dpkg,cache,log}/
|
|
|
|
|