update in Dockerfile_coolify builder to python:3.12-slim and install git on it

This commit is contained in:
who asks? 2024-09-09 22:02:25 -06:00
parent a77a51ae79
commit 69b4406d73

View file

@ -1,10 +1,10 @@
FROM python:3.9-slim AS builder
FROM python:3.12-slim AS builder
WORKDIR /monero-docs
COPY . /monero-docs
RUN pip install -r requirements.txt
RUN apt-get update && apt-get install -y git && pip install -r requirements.txt
RUN mkdocs build