2024-08-19 19:14:32 +00:00
|
|
|
FROM python:3.12-alpine AS build
|
2023-05-16 19:39:43 +00:00
|
|
|
WORKDIR /srv
|
|
|
|
RUN pip3 install pelican markdown
|
|
|
|
COPY . /srv/
|
2024-08-19 19:14:32 +00:00
|
|
|
RUN pelican content/ -s pelicanconf.py -t theme
|
2023-05-16 19:39:43 +00:00
|
|
|
|
2024-08-19 19:14:32 +00:00
|
|
|
FROM nginx:1.27.1-alpine
|
|
|
|
COPY --from=build /srv/output/ /usr/share/nginx/html/
|