www.nico.schottelius.org/Dockerfile

10 lines
190 B
Text
Raw Permalink Normal View History

2024-10-11 13:51:25 +00:00
FROM alpine:3.20
2024-10-11 15:00:55 +00:00
RUN apk add --no-cache ikiwiki git
2024-10-11 13:51:25 +00:00
COPY . /build
WORKDIR /build
2024-10-11 14:22:48 +00:00
RUN ikiwiki --rebuild --setup ikiwiki.setup
2024-10-11 13:51:25 +00:00
FROM nginx:alpine
COPY --from=0 /tmp/www /usr/share/nginx/html