7 lines
139 B
Docker
7 lines
139 B
Docker
FROM debian:sid-slim
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends hugo && \
|
|
rm -rf var/lib/{apt,dpkg,cache,log}/
|
|
|
|
|