Skip to content

Commit

Permalink
Install missing dependencies via apt
Browse files Browse the repository at this point in the history
  • Loading branch information
Shastick committed Dec 8, 2023
1 parent a6e022c commit 1610e54
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions monitoring/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ RUN apt-get update && apt-get install -y openssl curl libgeos-dev gcc && apt-get
# required for gevent to build without error in an ARM environment
RUN apt-get update && apt-get install -y libffi-dev libssl-dev python3-dev build-essential

# required for lxml to install successfully with pip (at least on an ARM environment)
RUN apt-get update && apt-get install -y libxml2-dev libxslt-dev

RUN mkdir -p /app/monitoring
COPY ./requirements.txt /app/monitoring/requirements.txt
RUN pip install -r /app/monitoring/requirements.txt
Expand Down

0 comments on commit 1610e54

Please sign in to comment.