10 lines
269 B
Docker
10 lines
269 B
Docker
FROM debian:sid-slim
|
|
MAINTAINER Alejandro Santillana alejandros714@protonmail.com
|
|
|
|
# For building and deploying to the VPS's and neocities
|
|
RUN apt-get update && \
|
|
apt-get install -y pandoc hugo curl --no-install-recommends && \
|
|
rm -rf var/lib/{apt,dpkg,cache,log}/
|
|
|
|
|