-
-
Notifications
You must be signed in to change notification settings - Fork 73
Description
Discussed in #493
Originally posted by dperezBM November 10, 2025
Hi,
I am trying to run a Docker container of GeoHealthCheck, but I want to update the Ubuntu and python versions used by the container.
So I have followed the installation instructions for docker:
-
Download the latest version of GeoHealthCheck in GitHub
-
Change the Dockerfile to the corresponding Ubuntu 24.04LTS so instead of using ubuntu:jammy, I changed the first line
FROM ubuntu:noble -
Build my modified image using the command
sudo docker build -t geopython/geohealthcheck . -
Run the container
sudo docker run -d --name ghc_web -p 8083:80 -v ghc_sqlitedb:/GeoHealthCheck/DB geopython/geohealthcheck:latest
However, it looks that something is not correct as the logs complains about paver, gunicorn and requests
Thanks for your help
I provide the needed information:
OS: Ubuntu 24.04LTS
Docker: version 28.5.1, build e180ab8
I also attach the logs from the container and the Dockerfile just in case you need it.