From dde7f977397f660a21b6160015b5d3b4af88efe6 Mon Sep 17 00:00:00 2001 From: dariNirvana Date: Sat, 10 Feb 2024 15:09:44 +0800 Subject: [PATCH] change build test --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5ea6fbd..3bd4c01 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,9 +4,9 @@ WORKDIR /app COPY requirements.txt requirements.txt -RUN apt-get update && apt-get install -y --no-install-recommends build-essential \ +RUN apt-get update && apt-get install -y --no-install-recommends build-essential libxml2-dev libxslt1-dev \ && pip install --upgrade pip \ - && pip install --prefix="/install" -r requirements.txt + && pip install --prefix="/install" lxml==4.9.4 -r requirements.txt FROM python:3-alpine