From a411dec055219d97f17eb914be47d6a4552c5e97 Mon Sep 17 00:00:00 2001 From: Zach Walker Date: Wed, 9 Oct 2024 14:41:45 -0700 Subject: [PATCH] Install lxml before other dependencies and add missing && --- scripts/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/Dockerfile b/scripts/Dockerfile index 22ceba5..a6c8834 100644 --- a/scripts/Dockerfile +++ b/scripts/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /app COPY requirements.txt . RUN apt-get update && \ apt-get install wamerican && \ - pip install --no-cache-dir -r requirements.txt \ - pip install --no-binary lxml lxml + pip install --no-binary lxml lxml && \ + pip install --no-cache-dir -r requirements.txt COPY *.py ./