You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
247 B
16 lines
247 B
3 months ago
|
FROM titom73/mkdocs AS MKDOCS_BUILD
|
||
|
|
||
|
RUN pip install markupsafe==2.0.1
|
||
|
|
||
|
RUN pip install mkdocs-blog-plugin
|
||
|
|
||
|
WORKDIR /docs
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
RUN mkdocs build
|
||
|
|
||
|
FROM mengzyou/bbhttpd:1.35
|
||
|
|
||
|
COPY --from=MKDOCS_BUILD --chown=www:www /docs/site /home/www/html
|