mirror of
https://github.com/kata-containers/kata-containers.git
synced 2026-03-31 09:03:08 +00:00
This supersedes https://github.com/kata-containers/kata-containers/pull/12622. I replaced Zensical with mkdocs-materialx. Materialx is a fork of mkdocs-material created after mkdocs-material was put into maintenance mode. We'll use this platform until Zensical is more feature complete. Added a few of the existing docs into the site to make a more user-friendly flow. Signed-off-by: LandonTClipp <11232769+LandonTClipp@users.noreply.github.com>
12 lines
242 B
Docker
12 lines
242 B
Docker
# Copyright 2026 Kata Contributors
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
FROM python:3.12-slim
|
|
|
|
WORKDIR /
|
|
COPY ./requirements.txt requirements.txt
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
ENTRYPOINT ["python3", "-m", "mkdocs"]
|