Commit 19ea5d17 authored by Mohamad Rahhal's avatar Mohamad Rahhal
Browse files

Update file Ryu.Dockerfile

parent dd605fc0
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -18,7 +18,12 @@ RUN apt-get update && apt-get install -y --no-install-recommends git iproute2 &&

RUN pip install --no-cache-dir --upgrade pip
# NOTE: Ryu 4.34 expects eventlet.wsgi.ALREADY_HANDLED, which disappears in Eventlet ≥ 0.30.3.
RUN pip install --no-cache-dir "setuptools" "wheel" "git+https://github.com/faucetsdn/ryu.git@v4.34" "eventlet<0.30.3"

RUN pip install --no-cache-dir --upgrade pip \
    && pip install --no-cache-dir "setuptools<58" "wheel" \
    && pip install --no-cache-dir --no-build-isolation \
       "git+https://github.com/faucetsdn/ryu.git@v4.34" "eventlet<0.30.3"


#COPY apps/ /opt/ryu-apps/  # Copy Ryu Apps, if any
WORKDIR /opt/ryu-apps