Files
toolchain/Dockerfile

15 lines
221 B
Docker
Raw Normal View History

2025-07-23 01:15:55 +03:00
FROM fedora:42 AS basic
2024-05-15 00:02:59 +03:00
2025-03-30 02:14:35 +03:00
WORKDIR /workbench
2024-05-15 00:02:59 +03:00
2025-03-30 02:14:35 +03:00
COPY pre.sh requirements.txt docker.sh minio.sh /root/
2024-05-15 00:02:59 +03:00
RUN /root/pre.sh
2024-08-23 07:32:15 +03:00
2025-03-30 02:14:35 +03:00
RUN /root/docker.sh
RUN /root/minio.sh
# Python packages
RUN pip3 install -r /root/requirements.txt