mirror of
https://github.com/gluster/glusterdocs.git
synced 2026-02-05 15:47:01 +01:00
This is useful to have - thank you for contributing. @amarts perhaps we can make more folks aware that this is now available. If any changes/fixes are required we can track against this initial contribution.
10 lines
208 B
Docker
10 lines
208 B
Docker
FROM centos:7
|
|
|
|
# RUN yum install -y epel-release
|
|
RUN yum install -y python3 python3-setuptools
|
|
RUN pip3 install mkdocs mkdocs-material
|
|
|
|
ENV LC_ALL=en_US.utf-8 LANG=en_US.utf-8
|
|
|
|
ENTRYPOINT ["mkdocs", "build"]
|