From c248a7b58ef3be8eb2465f399ebc488423da08e6 Mon Sep 17 00:00:00 2001 From: Dieter Schmidt Date: Sun, 25 Sep 2022 14:45:17 +0200 Subject: [PATCH] add python gpiod module to moonraker (fix #33?) --- klipper/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/klipper/Dockerfile b/klipper/Dockerfile index 6453c27..d9166d6 100644 --- a/klipper/Dockerfile +++ b/klipper/Dockerfile @@ -64,7 +64,7 @@ RUN git clone --single-branch --branch ${MOONRAKER_BRANCH} https://github.com/Ar RUN [ ! -d ${MOONRAKER_VENV_DIR} ] && python3 -m venv ${MOONRAKER_VENV_DIR} WORKDIR ${HOME}/moonraker -RUN ${MOONRAKER_VENV_DIR}/bin/pip install wheel && \ +RUN ${MOONRAKER_VENV_DIR}/bin/pip install wheel gpiod && \ ${MOONRAKER_VENV_DIR}/bin/pip install --no-cache-dir -f ${WHEELS} -r scripts/moonraker-requirements.txt RUN ${MOONRAKER_VENV_DIR}/bin/python -m compileall moonraker