Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add dependencies to dockerfile
Browse files Browse the repository at this point in the history
vgrafe authored Sep 29, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent baf3629 commit 1f7cbe9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions monitoring/Dockerfile
Original file line number Diff line number Diff line change
@@ -13,6 +13,10 @@ FROM python:3.8-slim
# Not -alpine because: https://stackoverflow.com/a/58028091/651139

RUN apt-get update && apt-get install -y openssl curl libgeos-dev gcc && apt-get install ca-certificates

# 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

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

0 comments on commit 1f7cbe9

Please sign in to comment.