13 lines
417 B
Docker
13 lines
417 B
Docker
FROM debian:sid-slim
|
|
MAINTAINER Alejandro Santillana alejandros714@protonmail.com
|
|
|
|
# Relevant to actually building static websites
|
|
RUN apt-get update && apt-get install -y git pandoc hugo
|
|
# For more easily logging into ionos
|
|
RUN apt-get install -y sshpass
|
|
RUN apt-get install -y curl
|
|
|
|
RUN git clone https://gitlab.com/shockrah/site-generator /tmp/gensite
|
|
RUN cd /tmp/gensite && ./install.sh g
|
|
RUN rm -rf /tmp/gensite
|