dockers/website/Dockerfile

13 lines
417 B
Docker
Raw Normal View History

2020-10-26 19:59:09 +00:00
FROM debian:sid-slim
MAINTAINER Alejandro Santillana alejandros714@protonmail.com
2021-02-16 05:03:30 +00:00
# Relevant to actually building static websites
RUN apt-get update && apt-get install -y git pandoc hugo
2020-10-26 19:59:09 +00:00
# For more easily logging into ionos
RUN apt-get install -y sshpass
2021-02-09 03:04:48 +00:00
RUN apt-get install -y curl
2020-10-26 19:59:09 +00:00
RUN git clone https://gitlab.com/shockrah/site-generator /tmp/gensite
RUN cd /tmp/gensite && ./install.sh g
RUN rm -rf /tmp/gensite