From 4cecc817723f72c919a2cc71d00f789ceb717fd7 Mon Sep 17 00:00:00 2001 From: Luc Date: Sun, 20 Jul 2025 18:32:32 +0200 Subject: [PATCH] monolang/mkdocs-git.containerfile: update --- monolang/mkdocs-git.containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/monolang/mkdocs-git.containerfile b/monolang/mkdocs-git.containerfile index 342723d..0fccace 100644 --- a/monolang/mkdocs-git.containerfile +++ b/monolang/mkdocs-git.containerfile @@ -3,10 +3,10 @@ FROM nginx:alpine # Set environment variables ENV PORT="80" ENV VIRTUAL_ENV="/mkdocs" -ENV PATH = "$VIRTUAL_ENV/bin:$PATH" +ENV PATH="$VIRTUAL_ENV/bin:$PATH" # Install necessary packages -RUN apk add --no-cache git py3-pip envsubst +RUN apk add --no-cache git python3 envsubst # Create work directory RUN mkdir /mkdocs