mirror of
https://github.com/monero-project/monero-docs.git
synced 2025-03-12 09:29:38 +00:00
update in Dockerfile_coolify builder to python:3.12-slim and install git on it
This commit is contained in:
parent
a77a51ae79
commit
69b4406d73
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue