Skip to content

Commit

Permalink
[build] add --fix-missing to apt-get update call in monitoring Docker…
Browse files Browse the repository at this point in the history
… file (#729)

[build] add --fix-missing to apt-get update call in monitoring Dockerfile
  • Loading branch information
Shastick authored Jul 15, 2024
1 parent ee67866 commit de77182
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion monitoring/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ FROM python:3.12-slim
# curl: Useful debugging utility
# gcc: Required to build various packages
# ca-certificates: Needed to accurately validate TLS connections
RUN apt-get update && apt-get install -y openssl curl libgeos-dev gcc && apt-get install ca-certificates
RUN apt-get update --fix-missing && apt-get install -y openssl curl libgeos-dev gcc && apt-get install ca-certificates

# Required to build in an ARM environment
# gevent: libffi-dev libssl-dev python3-dev build-essential
Expand Down

0 comments on commit de77182

Please sign in to comment.