monolang/mkdocs-git.containerfile: update

This commit is contained in:
Luc Bijl 2025-07-20 18:32:32 +02:00
parent 4cbe2827b6
commit 4cecc81772

View file

@ -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