This commit is contained in:
Richard Ward
2025-12-18 22:43:45 +00:00
parent a1f4124d28
commit c11e1dca76
3 changed files with 46 additions and 37 deletions

View File

@@ -26,7 +26,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
git \
&& rm -rf /var/lib/apt/lists/*
RUN python3 -m pip install --no-cache-dir "conan>=2"
RUN python3 -m venv /opt/venv
ENV PATH="/opt/venv/bin:${PATH}"
RUN pip install --upgrade pip
RUN pip install --no-cache-dir "conan>=2"
RUN groupadd --gid ${GID} ${USERNAME} && \
useradd --uid ${UID} --gid ${GID} -m ${USERNAME}