No cache dir pip in Dockerfile
Some checks are pending
Build and Publish Docs / build-and-push (push) Waiting to run

This commit is contained in:
Astra Logical 2026-07-28 16:59:29 -04:00
parent 136be0ad30
commit cef313cb2d

View file

@ -2,7 +2,7 @@
FROM python:3.11-alpine AS builder FROM python:3.11-alpine AS builder
WORKDIR /app WORKDIR /app
COPY . . COPY . .
RUN pip install -r requirements.txt RUN pip install --no-cache-dir -r requirements.txt
RUN mkdocs build RUN mkdocs build
# Serve Stage # Serve Stage