Files
toolchain/Dockerfile
RemiZOffAlex 9882662ed4
Some checks failed
Build toolchain image / Builder (push) Has been cancelled
Обновить Dockerfile
2025-07-23 01:15:55 +03:00

15 lines
221 B
Docker

FROM fedora:42 AS basic
WORKDIR /workbench
COPY pre.sh requirements.txt docker.sh minio.sh /root/
RUN /root/pre.sh
RUN /root/docker.sh
RUN /root/minio.sh
# Python packages
RUN pip3 install -r /root/requirements.txt