You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 6, 2023. It is now read-only.
Docker file:
FROM python:3.10.8-slim
ARG requirements=/rainbow3/requirements.txt
COPY requirements.production.txt $requirements
RUN apt-get update -qq && apt-get install -qq git pkg-config libxml2-dev libxmlsec1-dev libxmlsec1-openssl build-essential gcc
RUN pip install --upgrade pip && pip install -r $requirements
RUN git clone -b issue191 https://github.com/scikit-learn-contrib/py-earth
WORKDIR py-earth
RUN python setup.py -q install --cythonize
Log:
=> [5/7] RUN git clone -b issue191 https://github.com/scikit-learn-contrib/py-earth.git 38.9s
=> [6/7] WORKDIR /py-earth 0.0s
=> ERROR [7/7] RUN python setup.py install -qq --cythonize 13.6s
executor failed running [/bin/sh -c python setup.py install -qq --cythonize]: exit code: 1
The text was updated successfully, but these errors were encountered: