diff --git a/website/Dockerfile b/website/Dockerfile new file mode 100644 index 0000000..045136d --- /dev/null +++ b/website/Dockerfile @@ -0,0 +1,10 @@ +FROM debian:sid-slim +MAINTAINER Alejandro Santillana alejandros714@protonmail.com + +RUN apt-get update && apt-get install -y git pandoc +# For more easily logging into ionos +RUN apt-get install -y sshpass + +RUN git clone https://gitlab.com/shockrah/site-generator /tmp/gensite +RUN cd /tmp/gensite && ./install.sh g +RUN rm -rf /tmp/gensite