dockers/website/Dockerfile

10 lines
269 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-08-17 00:23:50 +00:00
# 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}/
2020-10-26 19:59:09 +00:00