mirror of
https://git.resf.org/sig_core/wiki.git
synced 2024-12-22 03:08:29 +00:00
9 lines
176 B
Plaintext
9 lines
176 B
Plaintext
|
FROM quay.io/rockylinux/rockylinux:9
|
||
|
|
||
|
RUN dnf -y upgrade
|
||
|
RUN dnf install -y git python3 python3-pip cairo-devel
|
||
|
|
||
|
COPY . /wiki
|
||
|
WORKDIR /wiki
|
||
|
RUN pip install -r requirements.txt
|