Files
toolchain/ci/Dockerfile
T
RemiZOffAlex 8c6f3eafb9
Build toolchain image / Builder (push) Waiting to run
Обновить ci/Dockerfile
2026-04-12 03:10:01 +03:00

18 lines
229 B
Docker

FROM fedora:43 AS basic
ENV PYTHONUNBUFFERED=1
COPY ci/base/ /
RUN /root/pre.sh
RUN /root/docker.sh
RUN /root/pip.sh
# RUN /root/minio.sh
# Python packages
RUN pip3 install -r /root/requirements.txt
FROM basic
WORKDIR /app