Skip to content

Commit

Permalink
Merge pull request #113 from scalableinternetservices/scriptsDockerfi…
Browse files Browse the repository at this point in the history
…leFix

Install lxml before other dependencies and add missing &&
  • Loading branch information
zwalker authored Oct 9, 2024
2 parents 03232e0 + a411dec commit 18da4ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 ./

0 comments on commit 18da4ef

Please sign in to comment.