docs(techdocs): Update Docker command to install mkdocs

Signed-off-by: Jan <herr.jan.heller@googlemail.com>
This commit is contained in:
Jan
2024-11-22 13:13:58 +01:00
committed by GitHub
parent b2a2df7680
commit 062f6fdb56
+3 -1
View File
@@ -297,7 +297,9 @@ You can do so by including the following lines right above `USER node` of your
`Dockerfile`:
```Dockerfile
RUN apt-get update && apt-get install -y python3 python3-pip python3-venv
RUN apt-get update && \
apt-get install -y python3 python3-pip python3-venv && \
rm -rf /var/lib/apt/lists/*
ENV VIRTUAL_ENV=/opt/venv
RUN python3 -m venv $VIRTUAL_ENV