Merge pull request #27784 from jahller/patch-3

docs(techdocs): Update Docker command to install mkdocs
This commit is contained in:
Andre Wanlin
2024-11-28 15:04:23 -06:00
committed by GitHub
+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