blog/Dockerfile
Louis Vallat 09da91638e Renamed blog
Signed-off-by: Louis Vallat <louis@louis-vallat.xyz>
2021-03-08 12:02:41 +01:00

17 lines
455 B
Docker

FROM alpine AS builder
WORKDIR /root
COPY src ./src
COPY ssg5 .
RUN apk --no-cache add gcc git make musl-dev && \
git clone https://github.com/kristapsdz/lowdown.git && \
cd lowdown && ./configure && make && make regress && make install && cd .. && \
chmod u+x ./ssg5 && mkdir dst && \
./ssg5 ./src/ ./dst/ "Le blog Louis Vallat" "blog.louis-vallat.xyz" && rm dst/.files
FROM nginx
COPY --from=builder /root/dst /usr/share/nginx/html