mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-05-19 19:50:33 +02:00

Also, check for new container images when starting the application. This replaces the usage of `share/image-id.txt` to ensure the image is trusted.
10 lines
186 B
Python
10 lines
186 B
Python
import logging
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
from .signatures import (
|
|
DEFAULT_PUBKEY_LOCATION,
|
|
is_update_available,
|
|
upgrade_container_image,
|
|
verify_local_image,
|
|
)
|