Some checks failed
Build toolchain image / Builder (push) Has been cancelled
19 lines
251 B
Docker
19 lines
251 B
Docker
FROM fedora:41 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
|
|
|
|
# FROM basic
|
|
|
|
# WORKDIR /app
|