Service Webserver failed to build : Temporary failure/Failed to Fetch

I’m getting the stated error when I attempt to build my container. I cant seem to understand what’s wrong. I’m on Ubuntu 22.04 and using docker-compose to build my image. Here is the detailed trace →

Building myapp_webserver
Step 1/15 : ARG JITSI_REPO=jitsi
Step 2/15 : ARG BASE_TAG=stable
Step 3/15 : FROM ${JITSI_REPO}/base:${BASE_TAG}
 ---> 319b2e366502
Step 4/15 : LABEL org.opencontainers.image.title="Jitsi Meet"
 ---> Using cache
 ---> c5cc34716be6
Step 5/15 : LABEL org.opencontainers.image.description="WebRTC compatible JavaScript application that uses Jitsi Videobridge to provide high quality, scalable video conferences."
 ---> Using cache
 ---> 298eae2d1ff6
Step 6/15 : LABEL org.opencontainers.image.url="https://jitsi.org/jitsi-meet/"
 ---> Using cache
 ---> dfebe0d4db74
Step 7/15 : LABEL org.opencontainers.image.source="https://github.com/jitsi/docker-jitsi-meet"
 ---> Using cache
 ---> 20b854afd9af
Step 8/15 : LABEL org.opencontainers.image.documentation="https://jitsi.github.io/handbook/"
 ---> Using cache
 ---> 0c82729c172f
Step 9/15 : ADD https://raw.githubusercontent.com/acmesh-official/acme.sh/2.8.8/acme.sh /opt

 ---> Using cache
 ---> 494ef2963655
Step 10/15 : COPY rootfs/ /
 ---> Using cache
 ---> 06c78e7406c2
Step 11/15 : RUN apt-dpkg-wrap apt-get update &&     apt-dpkg-wrap apt-get install -y cron nginx-extras jitsi-meet-web socat curl jq &&     mv /usr/share/jitsi-meet/interface_config.js /defaults &&     rm -f /etc/nginx/conf.d/default.conf &&     apt-cleanup
 ---> Running in 9b3e147c12de
Err:1 http://deb.debian.org/debian bullseye InRelease
  Temporary failure resolving 'deb.debian.org'
Err:2 http://ftp.debian.org/debian bullseye-backports InRelease
  Temporary failure resolving 'ftp.debian.org'
Err:3 https://download.jitsi.org stable/ InRelease
  Temporary failure resolving 'download.jitsi.org'
Err:4 http://deb.debian.org/debian-security bullseye-security InRelease
  Temporary failure resolving 'deb.debian.org'
Err:5 http://deb.debian.org/debian bullseye-updates InRelease
  Temporary failure resolving 'deb.debian.org'
Reading package lists...
W: Failed to fetch http://deb.debian.org/debian/dists/bullseye/InRelease  Temporary failure resolving 'deb.debian.org'
W: Failed to fetch http://deb.debian.org/debian-security/dists/bullseye-security/InRelease  Temporary failure resolving 'deb.debian.org'
W: Failed to fetch http://deb.debian.org/debian/dists/bullseye-updates/InRelease  Temporary failure resolving 'deb.debian.org'
W: Failed to fetch http://ftp.debian.org/debian/dists/bullseye-backports/InRelease  Temporary failure resolving 'ftp.debian.org'
W: Failed to fetch https://download.jitsi.org/stable/InRelease  Temporary failure resolving 'download.jitsi.org'
W: Some index files failed to download. They have been ignored, or old ones used instead.
Reading package lists...
Building dependency tree...
Reading state information...
E: Unable to locate package cron
E: Unable to locate package nginx-extras
E: Unable to locate package jitsi-meet-web
E: Unable to locate package socat
E: Unable to locate package curl
E: Unable to locate package jq
ERROR: Service 'myapp_webserver' failed to build: The command '/bin/sh -c apt-dpkg-wrap apt-get update &&     apt-dpkg-wrap apt-get install -y cron nginx-extras jitsi-meet-web socat curl jq &&     mv /usr/share/jitsi-meet/interface_config.js /defaults &&     rm -f /etc/nginx/conf.d/default.conf &&     apt-cleanup' returned a non-zero code: 100```

My dockerFile

ARG JITSI_REPO=jitsi
ARG BASE_TAG=stable
FROM ${JITSI_REPO}/base:${BASE_TAG}

LABEL org.opencontainers.image.title="Jitsi Meet"
LABEL org.opencontainers.image.description="WebRTC compatible JavaScript application that uses Jitsi Videobridge to provide high quality, scalable video conferences."
LABEL org.opencontainers.image.url="https://jitsi.org/jitsi-meet/"
LABEL org.opencontainers.image.source="https://github.com/jitsi/docker-jitsi-meet"
LABEL org.opencontainers.image.documentation="https://jitsi.github.io/handbook/"

ADD https://raw.githubusercontent.com/acmesh-official/acme.sh/2.8.8/acme.sh /opt
COPY rootfs/ /

RUN apt-dpkg-wrap apt-get update && \
    apt-dpkg-wrap apt-get install -y cron nginx-extras jitsi-meet-web socat curl jq && \
    mv /usr/share/jitsi-meet/interface_config.js /defaults && \
    rm -f /etc/nginx/conf.d/default.conf && \
    apt-cleanup

COPY myapp_web/ /usr/share/jitsi-meet/
COPY myapp_web/interface_config.js /defaults/interface_config.js

EXPOSE 80 443

VOLUME ["/config", "/usr/share/jitsi-meet/transcripts"]

My docker-compose.yml

version: '3.5'

services:
    # Frontend
    myapp_webserver:
        container_name: myapp_webserver
        #image: jitsi/web:${JITSI_IMAGE_VERSION:-stable}
        build:
             dockerfile: Dockerfile
             context: ./web
        restart: ${RESTART_POLICY:-unless-stopped}
        ports:
            - '${HTTP_PORT}:80'
            - '${HTTPS_PORT}:443'
        volumes:
            - ${CONFIG}/web:/config:Z
            - ${CONFIG}/web/crontabs:/var/spool/cron/crontabs:Z
            - ${CONFIG}/transcripts:/usr/share/jitsi-meet/transcripts:Z
        environment:
            - AMPLITUDE_ID
            - ANALYTICS_SCRIPT_URLS
            - ANALYTICS_WHITELISTED_EVENTS
            - AUDIO_QUALITY_OPUS_BITRATE
            - AUTO_CAPTION_ON_RECORD
            - BRANDING_DATA_URL
            - CALLSTATS_CUSTOM_SCRIPT_URL
            - CALLSTATS_ID
            - CALLSTATS_SECRET
            - CHROME_EXTENSION_BANNER_JSON
            - CONFCODE_URL
            - CONFIG_EXTERNAL_CONNECT
            - DEFAULT_LANGUAGE
            - DEPLOYMENTINFO_ENVIRONMENT
            - DEPLOYMENTINFO_ENVIRONMENT_TYPE
            - DEPLOYMENTINFO_REGION
            - DEPLOYMENTINFO_SHARD
            - DEPLOYMENTINFO_USERREGION
            - DESKTOP_SHARING_FRAMERATE_MIN
            - DESKTOP_SHARING_FRAMERATE_MAX
            - DIALIN_NUMBERS_URL
            - DIALOUT_AUTH_URL
            - DIALOUT_CODES_URL
            - DISABLE_AUDIO_LEVELS
            - DISABLE_DEEP_LINKING
            - DISABLE_GRANT_MODERATOR
            - DISABLE_HTTPS
            - DISABLE_KICKOUT
            - DISABLE_LOCAL_RECORDING
            - DISABLE_POLLS
            - DISABLE_PRIVATE_CHAT
            - DISABLE_PROFILE
            - DISABLE_REACTIONS
            - DISABLE_REMOTE_VIDEO_MENU
            - DISABLE_START_FOR_ALL
            - DROPBOX_APPKEY
            - DROPBOX_REDIRECT_URI
            - DYNAMIC_BRANDING_URL
            - ENABLE_AUDIO_PROCESSING
            - ENABLE_AUTH
            - ENABLE_BREAKOUT_ROOMS
            - ENABLE_CALENDAR
            - ENABLE_COLIBRI_WEBSOCKET
            - ENABLE_E2EPING
            - ENABLE_FILE_RECORDING_SHARING
            - ENABLE_GUESTS
            - ENABLE_HSTS
            - ENABLE_HTTP_REDIRECT
            - ENABLE_IPV6
            - ENABLE_LETSENCRYPT
            - ENABLE_LIPSYNC
            - ENABLE_NO_AUDIO_DETECTION
            - ENABLE_NOISY_MIC_DETECTION
            - ENABLE_OCTO
            - ENABLE_OPUS_RED
            - ENABLE_PREJOIN_PAGE
            - ENABLE_P2P
            - ENABLE_WELCOME_PAGE
            - ENABLE_CLOSE_PAGE
            - ENABLE_LIVESTREAMING
            - ENABLE_LOCAL_RECORDING_NOTIFY_ALL_PARTICIPANT
            - ENABLE_LOCAL_RECORDING_SELF_START
            - ENABLE_RECORDING
            - ENABLE_REMB
            - ENABLE_REQUIRE_DISPLAY_NAME
            - ENABLE_SERVICE_RECORDING
            - ENABLE_SIMULCAST
            - ENABLE_STATS_ID
            - ENABLE_STEREO
            - ENABLE_SUBDOMAINS
            - ENABLE_TALK_WHILE_MUTED
            - ENABLE_TCC
            - ENABLE_TRANSCRIPTIONS
            - ENABLE_XMPP_WEBSOCKET
            - ENABLE_JAAS_COMPONENTS
            - ETHERPAD_PUBLIC_URL
            - ETHERPAD_URL_BASE
            - E2EPING_NUM_REQUESTS
            - E2EPING_MAX_CONFERENCE_SIZE
            - E2EPING_MAX_MESSAGE_PER_SECOND
            - GOOGLE_ANALYTICS_ID
            - GOOGLE_API_APP_CLIENT_ID
            - HIDE_PREMEETING_BUTTONS
            - HIDE_PREJOIN_DISPLAY_NAME
            - HIDE_PREJOIN_EXTRA_BUTTONS
            - INVITE_SERVICE_URL
            - LETSENCRYPT_DOMAIN
            - LETSENCRYPT_EMAIL
            - LETSENCRYPT_USE_STAGING
            - MATOMO_ENDPOINT
            - MATOMO_SITE_ID
            - MICROSOFT_API_APP_CLIENT_ID
            - NGINX_RESOLVER
            - NGINX_WORKER_PROCESSES
            - NGINX_WORKER_CONNECTIONS
            - PEOPLE_SEARCH_URL
            - PREFERRED_LANGUAGE
            - PUBLIC_URL
            - P2P_PREFERRED_CODEC
            - RESOLUTION
            - RESOLUTION_MIN
            - RESOLUTION_WIDTH
            - RESOLUTION_WIDTH_MIN
            - START_AUDIO_MUTED
            - START_AUDIO_ONLY
            - START_BITRATE
            - START_SILENT
            - START_WITH_AUDIO_MUTED
            - START_VIDEO_MUTED
            - START_WITH_VIDEO_MUTED
            - TESTING_CAP_SCREENSHARE_BITRATE
            - TESTING_OCTO_PROBABILITY
            - TOKEN_AUTH_URL
            - TOOLBAR_BUTTONS
            - TRANSLATION_LANGUAGES
            - TRANSLATION_LANGUAGES_HEAD
            - TZ
            - USE_APP_LANGUAGE
            - VIDEOQUALITY_BITRATE_H264_LOW
            - VIDEOQUALITY_BITRATE_H264_STANDARD
            - VIDEOQUALITY_BITRATE_H264_HIGH
            - VIDEOQUALITY_BITRATE_VP8_LOW
            - VIDEOQUALITY_BITRATE_VP8_STANDARD
            - VIDEOQUALITY_BITRATE_VP8_HIGH
            - VIDEOQUALITY_BITRATE_VP9_LOW
            - VIDEOQUALITY_BITRATE_VP9_STANDARD
            - VIDEOQUALITY_BITRATE_VP9_HIGH
            - VIDEOQUALITY_ENFORCE_PREFERRED_CODEC
            - VIDEOQUALITY_PREFERRED_CODEC
            - XMPP_AUTH_DOMAIN
            - XMPP_BOSH_URL_BASE
            - XMPP_DOMAIN
            - XMPP_GUEST_DOMAIN
            - XMPP_MUC_DOMAIN
            - XMPP_RECORDER_DOMAIN
            - XMPP_PORT
            - WHITEBOARD_ENABLED
            - WHITEBOARD_COLLAB_SERVER_PUBLIC_URL
        networks:
            meet.jitsi:

    # XMPP server
    myapp_xmpp_server_prosody:
        container_name: myapp_xmpp_server_prosody
        image: jitsi/prosody:${JITSI_IMAGE_VERSION:-stable}
        restart: ${RESTART_POLICY:-unless-stopped}
        expose:
            - '${XMPP_PORT:-5222}'
            - '5347'
            - '5280'
        volumes:
            - ${CONFIG}/prosody/config:/config:Z
            - ${CONFIG}/prosody/prosody-plugins-custom:/prosody-plugins-custom:Z
        environment:
            - AUTH_TYPE
            - DISABLE_POLLS
            - ENABLE_AUTH
            - ENABLE_AV_MODERATION
            - ENABLE_BREAKOUT_ROOMS
            - ENABLE_END_CONFERENCE
            - ENABLE_GUESTS
            - ENABLE_IPV6
            - ENABLE_LOBBY
            - ENABLE_RECORDING
            - ENABLE_XMPP_WEBSOCKET
            - ENABLE_JAAS_COMPONENTS
            - GC_TYPE
            - GC_INC_TH
            - GC_INC_SPEED
            - GC_INC_STEP_SIZE
            - GC_GEN_MIN_TH
            - GC_GEN_MAX_TH
            - GLOBAL_CONFIG
            - GLOBAL_MODULES
            - JIBRI_RECORDER_USER
            - JIBRI_RECORDER_PASSWORD
            - JIBRI_XMPP_USER
            - JIBRI_XMPP_PASSWORD
            - JICOFO_AUTH_PASSWORD
            - JICOFO_COMPONENT_SECRET
            - JIGASI_XMPP_USER
            - JIGASI_XMPP_PASSWORD
            - JIGASI_AUTH_PASSWORD
            - JVB_AUTH_USER
            - JVB_AUTH_PASSWORD
            - JWT_APP_ID
            - JWT_APP_SECRET
            - JWT_ACCEPTED_ISSUERS
            - JWT_ACCEPTED_AUDIENCES
            - JWT_ASAP_KEYSERVER
            - JWT_ALLOW_EMPTY
            - JWT_AUTH_TYPE
            - JWT_ENABLE_DOMAIN_VERIFICATION
            - JWT_TOKEN_AUTH_MODULE
            - MATRIX_UVS_URL
            - MATRIX_UVS_ISSUER
            - MATRIX_UVS_AUTH_TOKEN
            - MATRIX_UVS_SYNC_POWER_LEVELS
            - LOG_LEVEL
            - LDAP_AUTH_METHOD
            - LDAP_BASE
            - LDAP_BINDDN
            - LDAP_BINDPW
            - LDAP_FILTER
            - LDAP_VERSION
            - LDAP_TLS_CIPHERS
            - LDAP_TLS_CHECK_PEER
            - LDAP_TLS_CACERT_FILE
            - LDAP_TLS_CACERT_DIR
            - LDAP_START_TLS
            - LDAP_URL
            - LDAP_USE_TLS
            - MAX_PARTICIPANTS
            - PROSODY_RESERVATION_ENABLED
            - PROSODY_RESERVATION_REST_BASE_URL
            - PUBLIC_URL
            - TURN_CREDENTIALS
            - TURN_HOST
            - TURNS_HOST
            - TURN_PORT
            - TURNS_PORT
            - TURN_TRANSPORT
            - TZ
            - XMPP_DOMAIN
            - XMPP_AUTH_DOMAIN
            - XMPP_GUEST_DOMAIN
            - XMPP_MUC_DOMAIN
            - XMPP_INTERNAL_MUC_DOMAIN
            - XMPP_MODULES
            - XMPP_MUC_MODULES
            - XMPP_MUC_CONFIGURATION
            - XMPP_INTERNAL_MUC_MODULES
            - XMPP_RECORDER_DOMAIN
            - XMPP_PORT
        networks:
            meet.jitsi:
                aliases:
                    - ${XMPP_SERVER:-xmpp.meet.jitsi}

    # Focus component
    myapp_conference_focus:
        container_name: myapp_conference_focus
        image: jitsi/jicofo:${JITSI_IMAGE_VERSION:-stable}
        restart: ${RESTART_POLICY:-unless-stopped}
        volumes:
            - ${CONFIG}/jicofo:/config:Z
        environment:
            - AUTH_TYPE
            - BRIDGE_AVG_PARTICIPANT_STRESS
            - BRIDGE_STRESS_THRESHOLD
            - ENABLE_AUTH
            - ENABLE_AUTO_OWNER
            - ENABLE_CODEC_VP8
            - ENABLE_CODEC_VP9
            - ENABLE_CODEC_H264
            - ENABLE_OCTO
            - ENABLE_RECORDING
            - ENABLE_SCTP
            - ENABLE_AUTO_LOGIN
            - JICOFO_AUTH_PASSWORD
            - JICOFO_ENABLE_BRIDGE_HEALTH_CHECKS
            - JICOFO_CONF_INITIAL_PARTICIPANT_WAIT_TIMEOUT
            - JICOFO_CONF_SINGLE_PARTICIPANT_TIMEOUT
            - JICOFO_ENABLE_HEALTH_CHECKS
            - JIBRI_BREWERY_MUC
            - JIBRI_REQUEST_RETRIES
            - JIBRI_PENDING_TIMEOUT
            - JIGASI_BREWERY_MUC
            - JIGASI_SIP_URI
            - JVB_BREWERY_MUC
            - MAX_BRIDGE_PARTICIPANTS
            - OCTO_BRIDGE_SELECTION_STRATEGY
            - SENTRY_DSN="${JICOFO_SENTRY_DSN:-0}"
            - SENTRY_ENVIRONMENT
            - SENTRY_RELEASE
            - TZ
            - XMPP_DOMAIN
            - XMPP_AUTH_DOMAIN
            - XMPP_INTERNAL_MUC_DOMAIN
            - XMPP_MUC_DOMAIN
            - XMPP_RECORDER_DOMAIN
            - XMPP_SERVER
            - XMPP_PORT
        depends_on:
            - myapp_xmpp_server_prosody
        networks:
            meet.jitsi:

    # Video bridge
    myapp_video_bridge:
        container_name: myapp_video_bridge
        image: jitsi/jvb:${JITSI_IMAGE_VERSION:-stable}
        restart: ${RESTART_POLICY:-unless-stopped}
        ports:
            - '${JVB_PORT:-10000}:${JVB_PORT:-10000}/udp'
            - '127.0.0.1:${JVB_COLIBRI_PORT:-8080}:8080'
        volumes:
            - ${CONFIG}/jvb:/config:Z
        environment:
            - DOCKER_HOST_ADDRESS
            - ENABLE_COLIBRI_WEBSOCKET
            - ENABLE_OCTO
            - JVB_ADVERTISE_IPS
            - JVB_ADVERTISE_PRIVATE_CANDIDATES
            - JVB_AUTH_USER
            - JVB_AUTH_PASSWORD
            - JVB_BREWERY_MUC
            - JVB_DISABLE_STUN
            - JVB_PORT
            - JVB_MUC_NICKNAME
            - JVB_STUN_SERVERS
            - JVB_OCTO_BIND_ADDRESS
            - JVB_OCTO_REGION
            - JVB_OCTO_RELAY_ID
            - JVB_WS_DOMAIN
            - JVB_WS_SERVER_ID
            - PUBLIC_URL
            - SENTRY_DSN="${JVB_SENTRY_DSN:-0}"
            - SENTRY_ENVIRONMENT
            - SENTRY_RELEASE
            - COLIBRI_REST_ENABLED
            - SHUTDOWN_REST_ENABLED
            - TZ
            - XMPP_AUTH_DOMAIN
            - XMPP_INTERNAL_MUC_DOMAIN
            - XMPP_SERVER
            - XMPP_PORT
        depends_on:
            - myapp_xmpp_server_prosody
        networks:
            meet.jitsi:

    # SIP Gateway
    myapp_sip_gateway:
        container_name: myapp_sip_gateway
        image: jitsi/jigasi:${JITSI_IMAGE_VERSION:-stable}
        restart: ${RESTART_POLICY:-unless-stopped}
        ports:
            - '${JIGASI_PORT_MIN:-20000}-${JIGASI_PORT_MAX:-20050}:${JIGASI_PORT_MIN:-20000}-${JIGASI_PORT_MAX:-20050}/udp'
        volumes:
            - ${CONFIG}/jigasi:/config:Z
            - ${CONFIG}/transcripts:/tmp/transcripts:Z
        environment:
            - ENABLE_AUTH
            - ENABLE_GUESTS
            - XMPP_AUTH_DOMAIN
            - XMPP_GUEST_DOMAIN
            - XMPP_MUC_DOMAIN
            - XMPP_INTERNAL_MUC_DOMAIN
            - XMPP_SERVER
            - XMPP_PORT
            - XMPP_DOMAIN
            - PUBLIC_URL
            - JIGASI_DISABLE_SIP
            - JIGASI_SIP_URI
            - JIGASI_SIP_PASSWORD
            - JIGASI_SIP_SERVER
            - JIGASI_SIP_PORT
            - JIGASI_SIP_TRANSPORT
            - JIGASI_SIP_DEFAULT_ROOM
            - JIGASI_XMPP_USER
            - JIGASI_XMPP_PASSWORD
            - JIGASI_BREWERY_MUC
            - JIGASI_PORT_MIN
            - JIGASI_PORT_MAX
            - JIGASI_HEALTH_CHECK_SIP_URI
            - JIGASI_HEALTH_CHECK_INTERVAL
            - JIGASI_SIP_KEEP_ALIVE_METHOD
            - JIGASI_ENABLE_SDES_SRTP
            - ENABLE_TRANSCRIPTIONS
            - JIGASI_TRANSCRIBER_ADVERTISE_URL
            - JIGASI_TRANSCRIBER_RECORD_AUDIO
            - JIGASI_TRANSCRIBER_SEND_TXT
            - GC_PROJECT_ID
            - GC_PRIVATE_KEY_ID
            - GC_PRIVATE_KEY
            - GC_CLIENT_EMAIL
            - GC_CLIENT_ID
            - GC_CLIENT_CERT_URL
            - SENTRY_DSN="${JIGASI_SENTRY_DSN:-0}"
            - SENTRY_ENVIRONMENT
            - SENTRY_RELEASE
            - TZ
        depends_on:
            - myapp_xmpp_server_prosody
        networks:
            meet.jitsi:            

    # Record
    myapp_record:
        container_name: myapp_record
        image: jitsi/jibri:${JITSI_IMAGE_VERSION:-stable}
        restart: ${RESTART_POLICY:-unless-stopped}
        volumes:
            - ${CONFIG}/jibri:/config:Z
        shm_size: '2gb'
        cap_add:
            - SYS_ADMIN
        environment:
            - CHROMIUM_FLAGS
            - DISPLAY=:0
            - ENABLE_STATS_D
            - JIBRI_HTTP_API_EXTERNAL_PORT
            - JIBRI_HTTP_API_INTERNAL_PORT
            - JIBRI_RECORDING_RESOLUTION
            - JIBRI_USAGE_TIMEOUT
            - JIBRI_XMPP_USER
            - JIBRI_XMPP_PASSWORD
            - JIBRI_BREWERY_MUC
            - JIBRI_RECORDER_USER
            - JIBRI_RECORDER_PASSWORD
            - JIBRI_RECORDING_DIR
            - JIBRI_FINALIZE_RECORDING_SCRIPT_PATH
            - JIBRI_STRIP_DOMAIN_JID
            - PUBLIC_URL
            - TZ
            - XMPP_AUTH_DOMAIN
            - XMPP_DOMAIN
            - XMPP_INTERNAL_MUC_DOMAIN
            - XMPP_MUC_DOMAIN
            - XMPP_RECORDER_DOMAIN
            - XMPP_SERVER
            - XMPP_PORT
            - XMPP_TRUST_ALL_CERTS
        depends_on:
            - myapp_conference_focus
        networks:
            meet.jitsi:

    # Etherpad
    myapp_etherpad:
        container_name: myapp_etherpad
        image: etherpad/etherpad:1.8.6
        restart: ${RESTART_POLICY:-unless-stopped}
        volumes:
            - ${CONFIG}/etherpad:/config:Z
        environment:
            - TITLE=${ETHERPAD_TITLE}
            - DEFAULT_PAD_TEXT=${ETHERPAD_DEFAULT_PAD_TEXT}
            - SKIN_NAME=${ETHERPAD_SKIN_NAME}
            - SKIN_VARIANTS=${ETHERPAD_SKIN_VARIANTS}
        networks:
            meet.jitsi:
                aliases:
                    - etherpad.meet.jitsi
   
# Custom network so all services can communicate using a FQDN
networks:
    meet.jitsi:

I’ve asked this on Stack and the Jitsi forums as well. The Jitsi folks told me there is nothing wrong with my code. On stack, They are still tying to help me out. Here are the respective Jitsi and stack links

Also, my other projects running on docker run without issues on the same GCP Ubuntu 22.04 instance, Help appreciated.

I copy a part of my comment from the other topic:

https://forums.docker.com/t/temporary-failure-resolving-deb-debian-org-inside-all-docker-containers/134889/20

So have you tried my suggestions from that topic written before my last post incuding changing the IP address?

Quote from last post:

In addition to those, please, try the build without Docker Compose only with the “docker build” command and with buildkit turned off

DOCKER_BUILDKIT=0 docker build . -t IMAGENAME

Note that this is just an example command. The important part that you should try is starting the build command with DOCKER_BUILDKIT=0. Depending on your docker version Docker will warn you that legacy build is deprecated, but I would like to test a theory.

Can you also share the output of the following commands?

docker info
docker version

This thread will be the only one we will be discussing on.I was updating the question by adding docker-compose.yml file since you asked for it . At the outset, apologies for creating two posts. My intention was to create a new one fearing the earlier post which was a long way back may not get a reply.

Here is my point to point reply to your questions →
You have a COPY rootfs/ / line in your Dockerfile. What is in the rootfs folder? Do you overwrite something that is required for name resolution?

Ans.They are configuration files for he webserver component to work properly. The repo i’m trying to build is a an open source video conferencing solution.

*Have you tried my suggestions in my previous comments?In addition to those, please, try the build without Docker Compose only with the “docker build” command and with buildkit turned off

Ans.I haven’t tried the yet. Based on your suggestion , will try them now.
Update. I just tried to build without docker-compose the way you specified it and I get the same result.

docker info shows

Client:
 Context:    default
 Debug Mode: false

Server:
 Containers: 3
  Running: 0
  Paused: 0
  Stopped: 3
 Images: 8
 Server Version: 20.10.21
 Storage Driver: overlay2
  Backing Filesystem: extfs
  Supports d_type: true
  Native Overlay Diff: true
  userxattr: false
 Logging Driver: json-file
 Cgroup Driver: systemd
 Cgroup Version: 2
 Plugins:
  Volume: local
  Network: bridge host ipvlan macvlan null overlay
  Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
 Swarm: inactive
 Runtimes: io.containerd.runc.v2 io.containerd.runtime.v1.linux runc
 Default Runtime: runc
 Init Binary: docker-init
 containerd version: 
 runc version: 
 init version: 
 Security Options:
  apparmor
  seccomp
   Profile: default
  cgroupns
 Kernel Version: 5.15.0-1031-gcp
 Operating System: Ubuntu 22.04.2 LTS
 OSType: linux
 Architecture: x86_64
 CPUs: 2
 Total Memory: 7.76GiB
 Name: myinstance-1
 ID: ECAT:XL2N:HE4U:KQHB:6FLA:UXNV:ZAOT:CDSL:OLQY:KG5V:QALU:OVWE
 Docker Root Dir: /var/lib/docker
 Debug Mode: false
 Registry: https://index.docker.io/v1/
 Labels:
 Experimental: false
 Insecure Registries:
  127.0.0.0/8
 Live Restore Enabled: false

docker version shows

Client:
 Version:           20.10.21
 API version:       1.41
 Go version:        go1.18.1
 Git commit:        20.10.21-0ubuntu1~22.04.2
 Built:             Thu Mar  2 18:26:04 2023
 OS/Arch:           linux/amd64
 Context:           default
 Experimental:      true

Server:
 Engine:
  Version:          20.10.21
  API version:      1.41 (minimum version 1.12)
  Go version:       go1.18.1
  Git commit:       20.10.21-0ubuntu1~22.04.2
  Built:            Wed Feb 15 15:26:57 2023
  OS/Arch:          linux/amd64
  Experimental:     false
 containerd:
  Version:          1.6.12-0ubuntu1~22.04.1
  GitCommit:        
 runc:
  Version:          1.1.4-0ubuntu1~22.04.1
  GitCommit:        
 docker-init:
  Version:          0.19.0
  GitCommit:        ```

Your Docker doesn’t seem to be installed from the official repository provided by Docker Inc.

Please, share the output of the following commands too:

dpkg -l | grep docker
snap list docker

These will list packages related to docker so we can find out how it was installed.

dpkg -l | grep docker shows

ii  docker-compose                   1.29.2-1                                all          define and run multi-container Docker applications with YAML
ii  docker.io                        20.10.21-0ubuntu1~22.04.2               amd64        Linux container runtime
ii  python3-docker                   5.0.3-1                                 all          Python 3 wrapper to access docker.io's control socket
ii  python3-dockerpty                0.4.1-2                                 all          Pseudo-tty handler for docker Python client (Python 3.x)

snap list docker shows

error: no matching snaps installed

Here is how you should install Docker

You have an older Docker version installed from Ubuntu’s repository and Docker Compose is v1 which is deprecated deprecated and will not be supported after the end of June.

Does internet connection work when you just run a container instead of building an image? Please check the other topic where you posted first and try my suggestions like this one

It is not likely that I will have more ideas unless you can show me something that I haven’t seen before and haven’t suggested a test or solution to.

After completely uninstalling previous versions of docker and installing latest as per the official methods,I still get the same errors.All except the web container( that uses the local DockerFile to build an image fails). All other images get pulled easily from the DockerHub. Th Web Base image(specified in DockerFile) gets pulled too from DockerHub but the build fails →

[+] Running 34/34
 ✔ jicofo 2 layers [⣿⣿]      0B/0B      Pulled                                                                                                                                            44.6s 
   ✔ e6e1bbbd3caa Pull complete                                                                                                                                                           43.7s 
   ✔ c24ce7168743 Pull complete                                                                                                                                                           44.1s 
 ✔ jvb 7 layers [⣿⣿⣿⣿⣿⣿⣿]      0B/0B      Pulled                                                                                                                                          49.1s 
   ✔ 3f9582a2cbe7 Pull complete                                                                                                                                                           13.3s 
   ✔ 3794ae4a17b9 Pull complete                                                                                                                                                           14.1s 
   ✔ 495a28b4fe51 Pull complete                                                                                                                                                           18.9s 
   ✔ 4f4fb700ef54 Pull complete                                                                                                                                                           19.6s 
   ✔ d0fa1a44bc64 Pull complete                                                                                                                                                           38.1s 
   ✔ dc50bcf42668 Pull complete                                                                                                                                                           48.3s 
   ✔ ecd423e0bf20 Pull complete                                                                                                                                                           48.7s 
 ✔ jibri 2 layers [⣿⣿]      0B/0B      Pulled                                                                                                                                             69.4s 
   ✔ 9198b7c25643 Pull complete                                                                                                                                                           38.6s 
   ✔ 93c6c91e2eff Pull complete                                                                                                                                                           68.1s 
 ✔ prosody 4 layers [⣿⣿⣿⣿]      0B/0B      Pulled                                                                                                                                         34.5s 
   ✔ c3b584c6f3ea Pull complete                                                                                                                                                           29.6s 
   ✔ 1ca7c4ac7b41 Pull complete                                                                                                                                                           30.6s 
   ✔ dab8ab8cd388 Pull complete                                                                                                                                                           32.2s 
   ✔ e18a82f7c731 Pull complete                                                                                                                                                           34.1s 
 ✔ jigasi 2 layers [⣿⣿]      0B/0B      Pulled                                                                                                                                            50.3s 
   ✔ 88e62617034c Pull complete                                                                                                                                                           49.5s 
   ✔ 835907e51818 Pull complete                                                                                                                                                           49.8s 
 ✔ etherpad 11 layers [⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿]      0B/0B      Pulled                                                                                                                                61.3s 
   ✔ d121f8d1c412 Pull complete                                                                                                                                                           15.0s 
   ✔ 3a54a24e4e59 Pull complete                                                                                                                                                           16.2s 
   ✔ d529751e49be Pull complete                                                                                                                                                           36.4s 
   ✔ 4e4e747e0ab9 Pull complete                                                                                                                                                           37.3s 
   ✔ 2cc64762bc94 Pull complete                                                                                                                                                           37.5s 
   ✔ 0cbf77d97178 Pull complete                                                                                                                                                           37.8s 
   ✔ ad140ebd535c Pull complete                                                                                                                                                           38.1s 
   ✔ d2d84abc0389 Pull complete                                                                                                                                                           39.1s 
   ✔ 3d1828351116 Pull complete                                                                                                                                                           52.0s 
   ✔ 28abcee682ac Pull complete                                                                                                                                                           52.8s 
   ✔ 390f899ff20b Pull complete                                                                                                                                                           60.9s 
[+] Building 3.7s (9/11)                                                                                                                                                                        
 => [internal] load build definition from Dockerfile                                                                                                                                       0.6s
 => => transferring dockerfile: 1.16kB                                                                                                                                                     0.0s
 => [internal] load .dockerignore                                                                                                                                                          0.6s
 => => transferring context: 2B                                                                                                                                                            0.0s
 => [internal] load metadata for docker.io/jitsi/base:stable                                                                                                                               0.8s
 => https://raw.githubusercontent.com/acmesh-official/acme.sh/2.8.8/acme.sh                                                                                                                0.1s
 => [internal] load build context                                                                                                                                                          1.4s
 => => transferring context: 58.46MB                                                                                                                                                       1.2s
 => [1/6] FROM docker.io/jitsi/base:stable@sha256:1834b73753760e91a2775e87680665078ac59f50333c678233abaced7ad81dd3                                                                         0.3s
 => => resolve docker.io/jitsi/base:stable@sha256:1834b73753760e91a2775e87680665078ac59f50333c678233abaced7ad81dd3                                                                         0.0s
 => => sha256:1834b73753760e91a2775e87680665078ac59f50333c678233abaced7ad81dd3 1.61kB / 1.61kB                                                                                             0.0s
 => => sha256:456de8b1645b9ba003df68ef06748c32e1a9b50c63d5505cd1ce2d5897a4346d 1.05kB / 1.05kB                                                                                             0.0s
 => => sha256:150420d5d3b4ddc0fe584680aa814d080960e3d09d3da1d5f9483862046ac8bd 3.61kB / 3.61kB                                                                                             0.0s
 => [2/6] ADD https://raw.githubusercontent.com/acmesh-official/acme.sh/2.8.8/acme.sh /opt                                                                                                 1.2s
 => [3/6] COPY rootfs/ /                                                                                                                                                                   0.1s
 => ERROR [4/6] RUN apt-dpkg-wrap apt-get update &&     apt-dpkg-wrap apt-get install -y cron nginx-extras jitsi-meet-web socat curl jq &&     mv /usr/share/jitsi-meet/interface_config.  0.7s
------                                                                                                                                                                                          
 > [4/6] RUN apt-dpkg-wrap apt-get update &&     apt-dpkg-wrap apt-get install -y cron nginx-extras jitsi-meet-web socat curl jq &&     mv /usr/share/jitsi-meet/interface_config.js /defaults &&     rm -f /etc/nginx/conf.d/default.conf &&     apt-cleanup:                                                                                                                                  
#0 0.596 Err:1 https://download.jitsi.org stable/ InRelease                                                                                                                                     
#0 0.596   Temporary failure resolving 'download.jitsi.org'                                                                                                                                     
#0 0.597 Err:2 http://ftp.debian.org/debian bullseye-backports InRelease                                                                                                                        
#0 0.597   Temporary failure resolving 'ftp.debian.org'
#0 0.597 Err:3 http://deb.debian.org/debian bullseye InRelease
#0 0.597   Temporary failure resolving 'deb.debian.org'
#0 0.598 Err:4 http://deb.debian.org/debian-security bullseye-security InRelease
#0 0.598   Temporary failure resolving 'deb.debian.org'
#0 0.599 Err:5 http://deb.debian.org/debian bullseye-updates InRelease
#0 0.599   Temporary failure resolving 'deb.debian.org'
#0 0.607 Reading package lists...
#0 0.631 W: Failed to fetch http://deb.debian.org/debian/dists/bullseye/InRelease  Temporary failure resolving 'deb.debian.org'
#0 0.631 W: Failed to fetch http://deb.debian.org/debian-security/dists/bullseye-security/InRelease  Temporary failure resolving 'deb.debian.org'
#0 0.631 W: Failed to fetch http://deb.debian.org/debian/dists/bullseye-updates/InRelease  Temporary failure resolving 'deb.debian.org'
#0 0.631 W: Failed to fetch http://ftp.debian.org/debian/dists/bullseye-backports/InRelease  Temporary failure resolving 'ftp.debian.org'
#0 0.632 W: Failed to fetch https://download.jitsi.org/stable/InRelease  Temporary failure resolving 'download.jitsi.org'
#0 0.632 W: Some index files failed to download. They have been ignored, or old ones used instead.
#0 0.649 Reading package lists...
#0 0.661 Building dependency tree...
#0 0.662 Reading state information...
#0 0.668 E: Unable to locate package cron
#0 0.668 E: Unable to locate package nginx-extras
#0 0.668 E: Unable to locate package jitsi-meet-web
#0 0.669 E: Unable to locate package socat
#0 0.669 E: Unable to locate package curl
#0 0.669 E: Unable to locate package jq
------
failed to solve: process "/bin/sh -c apt-dpkg-wrap apt-get update &&     apt-dpkg-wrap apt-get install -y cron nginx-extras jitsi-meet-web socat curl jq &&     mv /usr/share/jitsi-meet/interface_config.js /defaults &&     rm -f /etc/nginx/conf.d/default.conf &&     apt-cleanup" did not complete successfully: exit code: 100```

Here are the results :

**docker run --rm nicolaka/netshoot:v0.9 nslookup google.com**

Unable to find image 'nicolaka/netshoot:v0.9' locally
v0.9: Pulling from nicolaka/netshoot
8921db27df28: Pull complete 
15c88e78bef4: Pull complete 
dbac78df4790: Pull complete 
60c5dd6180d9: Pull complete 
9458965feede: Pull complete 
c1a1c502bf28: Pull complete 
4f4fb700ef54: Pull complete 
2446501c698f: Pull complete 
b649ec28adbd: Pull complete 
e4468167a10d: Pull complete 
6a18dbabefec: Pull complete 
44612ed3ebc8: Pull complete 
1c50cb4b8487: Pull complete 
414fe9acce94: Pull complete 
Digest: sha256:6032c4e72f58800ff13d89c801d793020d7a91bf33b39fa9a5531635a65c42ee
Status: Downloaded newer image for nicolaka/netshoot:v0.9
Server:         8.8.8.8
Address:        8.8.8.8#53

Non-authoritative answer:
Name:   google.com
Address: 74.125.196.139
Name:   google.com
Address: 74.125.196.101
Name:   google.com
Address: 74.125.196.113
Name:   google.com
Address: 74.125.196.102
Name:   google.com
Address: 74.125.196.100
Name:   google.com
Address: 74.125.196.138
Name:   google.com
Address: 2607:f8b0:400c:c07::71
Name:   google.com
Address: 2607:f8b0:400c:c07::64
Name:   google.com
Address: 2607:f8b0:400c:c07::66
Name:   google.com
Address: 2607:f8b0:400c:c07::8a

**docker run --rm nicolaka/netshoot:v0.9 nslookup google.com 8.8.8.8**

Server:         8.8.8.8
Address:        8.8.8.8#53

Non-authoritative answer:
Name:   google.com
Address: 142.250.97.113
Name:   google.com
Address: 142.250.97.101
Name:   google.com
Address: 142.250.97.139
Name:   google.com
Address: 142.250.97.138
Name:   google.com
Address: 142.250.97.100
Name:   google.com
Address: 142.250.97.102
Name:   google.com
Address: 2607:f8b0:400c:c07::71
Name:   google.com
Address: 2607:f8b0:400c:c07::64
Name:   google.com
Address: 2607:f8b0:400c:c07::66
Name:   google.com
Address: 2607:f8b0:400c:c07::8a
**docker run --rm nicolaka/netshoot:v0.9 nslookup google.com 8.8.4.4**

Server:         8.8.4.4
Address:        8.8.4.4#53

Non-authoritative answer:
Name:   google.com
Address: 142.250.97.101
Name:   google.com
Address: 142.250.97.139
Name:   google.com
Address: 142.250.97.100
Name:   google.com
Address: 142.250.97.102
Name:   google.com

HI @rimelek Have posted the details based on your previous questions.

Then next commands to try:

docker run --rm nicolaka/netshoot:v0.9 nslookup deb.debian.org

PS.: When you send your post check how it looks like and edit it if it is not how you wanted it to be. I fixed your post again because one code block was broken and the next code block was not visible because of that.

HI again.

Here are the results.

docker run --rm nicolaka/netshoot:v0.9 nslookup deb.debian.org

Server:         8.8.8.8
Address:        8.8.8.8#53

Non-authoritative answer:
deb.debian.org  canonical name = debian.map.fastlydns.net.
Name:   debian.map.fastlydns.net
Address: 146.75.38.132
Name:   debian.map.fastlydns.net
Address: 2a04:4e42:77::644

Hi @rimelek What more can I try ?

Hi. Your network connection is obviously ok. It looks like something wrong with apt. Can you pull the containers you are using as your base image and start a session to diagnose apt from within.
docker exec -it containername /bin/bash
Then go through a normal Debian /Ubuntu style update and instal l something.

1 Like

As @ihayhurst wrote.

I wanted to see how your network and dns resolution works. nslookup works well when you just run a container at least in the container based on the netshoot image. I asked you to test the build without buildkit, because buidkit uses a different method to build images which could affect networking as well, at least this is what we saw in previous issues. So far those issues were almost always if not always related to Docker Desktop, although I couldn’t explain why that would matter. If you really managed to disable buildkit temporarily, the next step could be what ihayhurst wrote. Checking APT. I am still not sure though that the copy line doesn’t do any harm, so you could try without that line or try a simple Dockerfile only running apt-get update like this:

ARG JITSI_REPO=jitsi
ARG BASE_TAG=stable
FROM ${JITSI_REPO}/base:${BASE_TAG}

RUN apt-get update

If that works, then you copy a config that breaks the system, but checking things in a running container interactively instead of “blindly” building an image is always a good idea.

Hello. I Entered the container and it seems to be working without network issues. Here are the results:

When I run apt-get update :

root@15b0ae691623:/# apt-get update
Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB]
Get:2 http://ftp.debian.org/debian bullseye-backports InRelease [49.0 kB]              
Get:3 http://deb.debian.org/debian-security bullseye-security InRelease [48.4 kB]                       
Get:4 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB]               
Get:5 http://ftp.debian.org/debian bullseye-backports/main amd64 Packages [416 kB]    
Get:6 http://deb.debian.org/debian bullseye/main amd64 Packages [8183 kB]     
Get:7 https://download.jitsi.org stable/ InRelease [1682 B]                    
Get:8 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages [236 kB]
Get:9 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [14.6 kB]
Get:10 https://download.jitsi.org stable/ Packages [79.6 kB]
Fetched 9189 kB in 2s (5320 kB/s)                           
Reading package lists... Done

When i run only apt-dpkg-wrap :

/usr/bin/apt-dpkg-wrap: 7: shift: can't shift that many

When i run apt-dpkg-wrap apt-get install -y cron nginx-extras jitsi-meet-web socat curl jq :

root@15b0ae691623:/# apt-dpkg-wrap apt-get install -y cron nginx-extras jitsi-meet-web socat curl jq
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following additional packages will be installed:
  fontconfig-config fonts-dejavu-core iproute2 libbpf0 libbrotli1 libbsd0 libcap2 libcap2-bin libcurl4 libdeflate0 libelf1 libexpat1 libfontconfig1 libfreetype6 libgd3 libgdbm-compat4 libgdbm6 libgeoip1
  libicu67 libjbig0 libjpeg62-turbo libjq1 libluajit-5.1-2 libluajit-5.1-common libmaxminddb0 libmd0 libmnl0 libnghttp2-14 libnginx-mod-http-auth-pam libnginx-mod-http-cache-purge libnginx-mod-http-dav-ext
  libnginx-mod-http-echo libnginx-mod-http-fancyindex libnginx-mod-http-geoip libnginx-mod-http-geoip2 libnginx-mod-http-headers-more-filter libnginx-mod-http-image-filter libnginx-mod-http-lua
  libnginx-mod-http-ndk libnginx-mod-http-perl libnginx-mod-http-subs-filter libnginx-mod-http-uploadprogress libnginx-mod-http-upstream-fair libnginx-mod-http-xslt-filter libnginx-mod-mail libnginx-mod-nchan
  libnginx-mod-stream libnginx-mod-stream-geoip libnginx-mod-stream-geoip2 libonig5 libperl5.32 libpng16-16 librtmp1 libssh2-1 libtiff5 libwebp6 libwrap0 libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 libxml2
  libxpm4 libxslt1.1 libxtables12 nginx-common perl perl-modules-5.32 sensible-utils ucf
Suggested packages:
  anacron logrotate checksecurity iproute2-doc libgd-tools gdbm-l10n geoip-bin mmdb-bin fcgiwrap nginx-doc ssl-cert perl-doc libterm-readline-gnu-perl | libterm-readline-perl-perl make
  libtap-harness-archive-perl
Recommended packages:
  default-mta | mail-transport-agent libatm1 libpam-cap geoip-database netbase
The following NEW packages will be installed:
  cron curl fontconfig-config fonts-dejavu-core iproute2 jitsi-meet-web jq libbpf0 libbrotli1 libbsd0 libcap2 libcap2-bin libcurl4 libdeflate0 libelf1 libexpat1 libfontconfig1 libfreetype6 libgd3
  libgdbm-compat4 libgdbm6 libgeoip1 libicu67 libjbig0 libjpeg62-turbo libjq1 libluajit-5.1-2 libluajit-5.1-common libmaxminddb0 libmd0 libmnl0 libnghttp2-14 libnginx-mod-http-auth-pam
  libnginx-mod-http-cache-purge libnginx-mod-http-dav-ext libnginx-mod-http-echo libnginx-mod-http-fancyindex libnginx-mod-http-geoip libnginx-mod-http-geoip2 libnginx-mod-http-headers-more-filter
  libnginx-mod-http-image-filter libnginx-mod-http-lua libnginx-mod-http-ndk libnginx-mod-http-perl libnginx-mod-http-subs-filter libnginx-mod-http-uploadprogress libnginx-mod-http-upstream-fair
  libnginx-mod-http-xslt-filter libnginx-mod-mail libnginx-mod-nchan libnginx-mod-stream libnginx-mod-stream-geoip libnginx-mod-stream-geoip2 libonig5 libperl5.32 libpng16-16 librtmp1 libssh2-1 libtiff5
  libwebp6 libwrap0 libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 libxml2 libxpm4 libxslt1.1 libxtables12 nginx-common nginx-extras perl perl-modules-5.32 sensible-utils socat ucf
0 upgraded, 77 newly installed, 0 to remove and 1 not upgraded.
Need to get 44.7 MB of archives.
After this operation, 170 MB of additional disk space will be used.
Get:1 http://deb.debian.org/debian bullseye/main amd64 sensible-utils all 0.0.14 [14.8 kB]
Get:2 http://deb.debian.org/debian bullseye/main amd64 cron amd64 3.0pl1-137 [99.6 kB]
Get:3 http://deb.debian.org/debian bullseye/main amd64 perl-modules-5.32 all 5.32.1-4+deb11u2 [2823 kB]
Get:4 http://deb.debian.org/debian bullseye/main amd64 libgdbm6 amd64 1.19-2 [64.9 kB]
Get:5 http://deb.debian.org/debian bullseye/main amd64 libgdbm-compat4 amd64 1.19-2 [44.7 kB]
Get:6 http://deb.debian.org/debian bullseye/main amd64 libperl5.32 amd64 5.32.1-4+deb11u2 [4106 kB]
Get:7 http://deb.debian.org/debian bullseye/main amd64 perl amd64 5.32.1-4+deb11u2 [293 kB]
Get:8 http://deb.debian.org/debian bullseye/main amd64 libelf1 amd64 0.183-1 [165 kB]
Get:9 http://deb.debian.org/debian bullseye/main amd64 libbpf0 amd64 1:0.3-2 [98.3 kB]
Get:10 http://deb.debian.org/debian bullseye/main amd64 libmd0 amd64 1.0.3-3 [28.0 kB]
Get:11 http://deb.debian.org/debian bullseye/main amd64 libbsd0 amd64 0.11.3-1 [108 kB]
Get:12 http://deb.debian.org/debian bullseye/main amd64 libcap2 amd64 1:2.44-1 [23.6 kB]
Get:13 http://deb.debian.org/debian bullseye/main amd64 libmnl0 amd64 1.0.4-3 [12.5 kB]
Get:14 http://deb.debian.org/debian bullseye/main amd64 libxtables12 amd64 1.8.7-1 [45.1 kB]
Get:15 http://deb.debian.org/debian bullseye/main amd64 libcap2-bin amd64 1:2.44-1 [32.6 kB]
Get:16 http://deb.debian.org/debian bullseye/main amd64 iproute2 amd64 5.10.0-4 [930 kB]    
Get:17 http://deb.debian.org/debian bullseye/main amd64 ucf all 3.0043 [74.0 kB] 
Get:18 http://deb.debian.org/debian bullseye/main amd64 libbrotli1 amd64 1.0.9-2+b2 [279 kB]
Get:19 http://deb.debian.org/debian bullseye/main amd64 libnghttp2-14 amd64 1.43.0-1 [77.1 kB]
Get:20 http://deb.debian.org/debian bullseye/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-2+b2 [60.8 kB]
Get:21 http://deb.debian.org/debian bullseye/main amd64 libssh2-1 amd64 1.9.0-2 [156 kB]    
Get:22 http://deb.debian.org/debian-security bullseye-security/main amd64 libcurl4 amd64 7.74.0-1.3+deb11u7 [346 kB]
Get:23 http://deb.debian.org/debian-security bullseye-security/main amd64 curl amd64 7.74.0-1.3+deb11u7 [270 kB]
Get:24 http://deb.debian.org/debian bullseye/main amd64 fonts-dejavu-core all 2.37-2 [1069 kB]
Get:25 http://deb.debian.org/debian bullseye/main amd64 fontconfig-config all 2.13.1-4.2 [281 kB]
Get:26 http://deb.debian.org/debian bullseye/main amd64 libonig5 amd64 6.9.6-1.1 [185 kB]
Get:27 http://deb.debian.org/debian bullseye/main amd64 libjq1 amd64 1.6-2.1 [135 kB]
Get:28 http://deb.debian.org/debian bullseye/main amd64 jq amd64 1.6-2.1 [64.9 kB]
Get:29 http://deb.debian.org/debian bullseye/main amd64 libdeflate0 amd64 1.7-1 [53.1 kB]
Get:30 http://deb.debian.org/debian bullseye/main amd64 libexpat1 amd64 2.2.10-2+deb11u5 [98.2 kB]
Get:31 http://deb.debian.org/debian bullseye/main amd64 libpng16-16 amd64 1.6.37-3 [294 kB]
Get:32 http://deb.debian.org/debian bullseye/main amd64 libfreetype6 amd64 2.10.4+dfsg-1+deb11u1 [418 kB]
Get:33 http://deb.debian.org/debian bullseye/main amd64 libfontconfig1 amd64 2.13.1-4.2 [347 kB]
Get:34 http://deb.debian.org/debian bullseye/main amd64 libjpeg62-turbo amd64 1:2.0.6-4 [151 kB]
Get:35 http://deb.debian.org/debian bullseye/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB] 
Get:36 http://deb.debian.org/debian bullseye/main amd64 libwebp6 amd64 0.6.1-2.1 [258 kB]
Get:37 http://deb.debian.org/debian-security bullseye-security/main amd64 libtiff5 amd64 4.2.0-1+deb11u4 [290 kB]
Get:38 http://deb.debian.org/debian bullseye/main amd64 libxau6 amd64 1:1.0.9-1 [19.7 kB]
Get:39 http://deb.debian.org/debian bullseye/main amd64 libxdmcp6 amd64 1:1.1.2-3 [26.3 kB]
Get:40 http://deb.debian.org/debian bullseye/main amd64 libxcb1 amd64 1.14-3 [140 kB]
Get:41 http://deb.debian.org/debian bullseye/main amd64 libx11-data all 2:1.7.2-1 [311 kB]
Get:42 http://deb.debian.org/debian bullseye/main amd64 libx11-6 amd64 2:1.7.2-1 [772 kB]
Get:43 http://deb.debian.org/debian bullseye/main amd64 libxpm4 amd64 1:3.5.12-1 [49.1 kB]
Get:44 http://deb.debian.org/debian bullseye/main amd64 libgd3 amd64 2.3.0-2 [137 kB]
Get:45 http://deb.debian.org/debian bullseye/main amd64 libgeoip1 amd64 1.6.12-7 [92.5 kB]
Get:46 http://deb.debian.org/debian bullseye/main amd64 libicu67 amd64 67.1-7 [8622 kB] 
Get:47 http://deb.debian.org/debian bullseye/main amd64 libluajit-5.1-common all 2.1.0~beta3+dfsg-5.3 [46.9 kB]
Get:48 http://deb.debian.org/debian bullseye/main amd64 libluajit-5.1-2 amd64 2.1.0~beta3+dfsg-5.3 [241 kB]
Get:49 http://deb.debian.org/debian bullseye/main amd64 libmaxminddb0 amd64 1.5.2-1 [29.8 kB]
Get:50 http://deb.debian.org/debian bullseye/main amd64 nginx-common all 1.18.0-6.1+deb11u3 [126 kB]
Get:51 http://deb.debian.org/debian bullseye/main amd64 libnginx-mod-http-auth-pam amd64 1.18.0-6.1+deb11u3 [97.3 kB]
Get:52 http://deb.debian.org/debian bullseye/main amd64 libnginx-mod-http-cache-purge amd64 1.18.0-6.1+deb11u3 [99.7 kB]
Get:53 http://deb.debian.org/debian bullseye/main amd64 libxml2 amd64 2.9.10+dfsg-6.7+deb11u3 [693 kB]     
Get:54 http://deb.debian.org/debian bullseye/main amd64 libnginx-mod-http-dav-ext amd64 1.18.0-6.1+deb11u3 [105 kB]
Get:55 http://deb.debian.org/debian bullseye/main amd64 libnginx-mod-http-echo amd64 1.18.0-6.1+deb11u3 [109 kB]
Get:56 http://deb.debian.org/debian bullseye/main amd64 libnginx-mod-http-fancyindex amd64 1.18.0-6.1+deb11u3 [102 kB]
Get:57 http://deb.debian.org/debian bullseye/main amd64 libnginx-mod-http-geoip amd64 1.18.0-6.1+deb11u3 [98.4 kB]
Get:58 http://deb.debian.org/debian bullseye/main amd64 libnginx-mod-http-geoip2 amd64 1.18.0-6.1+deb11u3 [99.0 kB]
Get:59 http://deb.debian.org/debian bullseye/main amd64 libnginx-mod-http-headers-more-filter amd64 1.18.0-6.1+deb11u3 [103 kB]
Get:60 http://deb.debian.org/debian bullseye/main amd64 libnginx-mod-http-image-filter amd64 1.18.0-6.1+deb11u3 [102 kB]
Get:61 http://deb.debian.org/debian bullseye/main amd64 libnginx-mod-http-ndk amd64 1.18.0-6.1+deb11u3 [97.8 kB]
Get:62 http://deb.debian.org/debian bullseye/main amd64 libnginx-mod-http-lua amd64 1.18.0-6.1+deb11u3 [245 kB]
Get:63 http://deb.debian.org/debian bullseye/main amd64 libnginx-mod-http-perl amd64 1.18.0-6.1+deb11u3 [110 kB]
Get:64 http://deb.debian.org/debian bullseye/main amd64 libnginx-mod-http-subs-filter amd64 1.18.0-6.1+deb11u3 [100 kB]
Get:65 http://deb.debian.org/debian bullseye/main amd64 libnginx-mod-http-uploadprogress amd64 1.18.0-6.1+deb11u3 [104 kB]
Get:66 http://deb.debian.org/debian bullseye/main amd64 libnginx-mod-http-upstream-fair amd64 1.18.0-6.1+deb11u3 [100 kB]
Get:67 http://deb.debian.org/debian bullseye/main amd64 libxslt1.1 amd64 1.1.34-4+deb11u1 [240 kB]
Get:68 http://deb.debian.org/debian bullseye/main amd64 libnginx-mod-http-xslt-filter amd64 1.18.0-6.1+deb11u3 [100 kB]
Get:69 http://deb.debian.org/debian bullseye/main amd64 libnginx-mod-mail amd64 1.18.0-6.1+deb11u3 [129 kB]
Get:70 http://deb.debian.org/debian bullseye/main amd64 libnginx-mod-nchan amd64 1.18.0-6.1+deb11u3 [300 kB]
Get:71 http://deb.debian.org/debian bullseye/main amd64 libnginx-mod-stream amd64 1.18.0-6.1+deb11u3 [154 kB]
Get:72 http://deb.debian.org/debian bullseye/main amd64 libnginx-mod-stream-geoip amd64 1.18.0-6.1+deb11u3 [97.7 kB]
Get:73 http://deb.debian.org/debian bullseye/main amd64 libnginx-mod-stream-geoip2 amd64 1.18.0-6.1+deb11u3 [98.6 kB]
Get:74 http://deb.debian.org/debian bullseye/main amd64 libwrap0 amd64 7.6.q-31 [59.0 kB]
Get:75 http://deb.debian.org/debian bullseye/main amd64 nginx-extras amd64 1.18.0-6.1+deb11u3 [530 kB]
Get:76 http://deb.debian.org/debian bullseye/main amd64 socat amd64 1.7.4.1-3 [370 kB]
Get:77 https://download.jitsi.org stable/ jitsi-meet-web 1.0.6991-1 [15.8 MB]
Fetched 44.7 MB in 2s (28.0 MB/s)          
Extracting templates from packages: 100%
Preconfiguring packages ...
Selecting previously unselected package sensible-utils.
(Reading database ... 7481 files and directories currently installed.)
Preparing to unpack .../00-sensible-utils_0.0.14_all.deb ...
Unpacking sensible-utils (0.0.14) ...
Selecting previously unselected package cron.
Preparing to unpack .../01-cron_3.0pl1-137_amd64.deb ...
Unpacking cron (3.0pl1-137) ...
Selecting previously unselected package perl-modules-5.32.
Preparing to unpack .../02-perl-modules-5.32_5.32.1-4+deb11u2_all.deb ...
Unpacking perl-modules-5.32 (5.32.1-4+deb11u2) ...
Selecting previously unselected package libgdbm6:amd64.
Preparing to unpack .../03-libgdbm6_1.19-2_amd64.deb ...
Unpacking libgdbm6:amd64 (1.19-2) ...
Selecting previously unselected package libgdbm-compat4:amd64.
Preparing to unpack .../04-libgdbm-compat4_1.19-2_amd64.deb ...
Unpacking libgdbm-compat4:amd64 (1.19-2) ...
Selecting previously unselected package libperl5.32:amd64.
Preparing to unpack .../05-libperl5.32_5.32.1-4+deb11u2_amd64.deb ...
Unpacking libperl5.32:amd64 (5.32.1-4+deb11u2) ...
Selecting previously unselected package perl.
Preparing to unpack .../06-perl_5.32.1-4+deb11u2_amd64.deb ...
Unpacking perl (5.32.1-4+deb11u2) ...
Selecting previously unselected package libelf1:amd64.
Preparing to unpack .../07-libelf1_0.183-1_amd64.deb ...
Unpacking libelf1:amd64 (0.183-1) ...
Selecting previously unselected package libbpf0:amd64.
Preparing to unpack .../08-libbpf0_1%3a0.3-2_amd64.deb ...
Unpacking libbpf0:amd64 (1:0.3-2) ...
Selecting previously unselected package libmd0:amd64.
Preparing to unpack .../09-libmd0_1.0.3-3_amd64.deb ...
Unpacking libmd0:amd64 (1.0.3-3) ...
Selecting previously unselected package libbsd0:amd64.
Preparing to unpack .../10-libbsd0_0.11.3-1_amd64.deb ...
Unpacking libbsd0:amd64 (0.11.3-1) ...
Selecting previously unselected package libcap2:amd64.
Preparing to unpack .../11-libcap2_1%3a2.44-1_amd64.deb ...
Unpacking libcap2:amd64 (1:2.44-1) ...
Selecting previously unselected package libmnl0:amd64.
Preparing to unpack .../12-libmnl0_1.0.4-3_amd64.deb ...
Unpacking libmnl0:amd64 (1.0.4-3) ...
Selecting previously unselected package libxtables12:amd64.
Preparing to unpack .../13-libxtables12_1.8.7-1_amd64.deb ...
Unpacking libxtables12:amd64 (1.8.7-1) ...
Selecting previously unselected package libcap2-bin.
Preparing to unpack .../14-libcap2-bin_1%3a2.44-1_amd64.deb ...
Unpacking libcap2-bin (1:2.44-1) ...
Selecting previously unselected package iproute2.
Preparing to unpack .../15-iproute2_5.10.0-4_amd64.deb ...
Unpacking iproute2 (5.10.0-4) ...
Selecting previously unselected package ucf.
Preparing to unpack .../16-ucf_3.0043_all.deb ...
Moving old data out of the way
Unpacking ucf (3.0043) ...
Selecting previously unselected package libbrotli1:amd64.
Preparing to unpack .../17-libbrotli1_1.0.9-2+b2_amd64.deb ...
Unpacking libbrotli1:amd64 (1.0.9-2+b2) ...
Selecting previously unselected package libnghttp2-14:amd64.
Preparing to unpack .../18-libnghttp2-14_1.43.0-1_amd64.deb ...
Unpacking libnghttp2-14:amd64 (1.43.0-1) ...
Selecting previously unselected package librtmp1:amd64.
Preparing to unpack .../19-librtmp1_2.4+20151223.gitfa8646d.1-2+b2_amd64.deb ...
Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ...
Selecting previously unselected package libssh2-1:amd64.
Preparing to unpack .../20-libssh2-1_1.9.0-2_amd64.deb ...
Unpacking libssh2-1:amd64 (1.9.0-2) ...
Selecting previously unselected package libcurl4:amd64.
Preparing to unpack .../21-libcurl4_7.74.0-1.3+deb11u7_amd64.deb ...
Unpacking libcurl4:amd64 (7.74.0-1.3+deb11u7) ...
Selecting previously unselected package curl.
Preparing to unpack .../22-curl_7.74.0-1.3+deb11u7_amd64.deb ...
Unpacking curl (7.74.0-1.3+deb11u7) ...
Selecting previously unselected package fonts-dejavu-core.
Preparing to unpack .../23-fonts-dejavu-core_2.37-2_all.deb ...
Unpacking fonts-dejavu-core (2.37-2) ...
Selecting previously unselected package fontconfig-config.
Preparing to unpack .../24-fontconfig-config_2.13.1-4.2_all.deb ...
Unpacking fontconfig-config (2.13.1-4.2) ...
Selecting previously unselected package libonig5:amd64.
Preparing to unpack .../25-libonig5_6.9.6-1.1_amd64.deb ...
Unpacking libonig5:amd64 (6.9.6-1.1) ...
Selecting previously unselected package libjq1:amd64.
Preparing to unpack .../26-libjq1_1.6-2.1_amd64.deb ...
Unpacking libjq1:amd64 (1.6-2.1) ...
Selecting previously unselected package jq.
Preparing to unpack .../27-jq_1.6-2.1_amd64.deb ...
Unpacking jq (1.6-2.1) ...
Selecting previously unselected package libdeflate0:amd64.
Preparing to unpack .../28-libdeflate0_1.7-1_amd64.deb ...
Unpacking libdeflate0:amd64 (1.7-1) ...
Selecting previously unselected package libexpat1:amd64.
Preparing to unpack .../29-libexpat1_2.2.10-2+deb11u5_amd64.deb ...
Unpacking libexpat1:amd64 (2.2.10-2+deb11u5) ...
Selecting previously unselected package libpng16-16:amd64.
Preparing to unpack .../30-libpng16-16_1.6.37-3_amd64.deb ...
Unpacking libpng16-16:amd64 (1.6.37-3) ...
Selecting previously unselected package libfreetype6:amd64.
Preparing to unpack .../31-libfreetype6_2.10.4+dfsg-1+deb11u1_amd64.deb ...
Unpacking libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ...
Selecting previously unselected package libfontconfig1:amd64.
Preparing to unpack .../32-libfontconfig1_2.13.1-4.2_amd64.deb ...
Unpacking libfontconfig1:amd64 (2.13.1-4.2) ...
Selecting previously unselected package libjpeg62-turbo:amd64.
Preparing to unpack .../33-libjpeg62-turbo_1%3a2.0.6-4_amd64.deb ...
Unpacking libjpeg62-turbo:amd64 (1:2.0.6-4) ...
Selecting previously unselected package libjbig0:amd64.
Preparing to unpack .../34-libjbig0_2.1-3.1+b2_amd64.deb ...
Unpacking libjbig0:amd64 (2.1-3.1+b2) ...
Selecting previously unselected package libwebp6:amd64.
Preparing to unpack .../35-libwebp6_0.6.1-2.1_amd64.deb ...
Unpacking libwebp6:amd64 (0.6.1-2.1) ...
Selecting previously unselected package libtiff5:amd64.
Preparing to unpack .../36-libtiff5_4.2.0-1+deb11u4_amd64.deb ...
Unpacking libtiff5:amd64 (4.2.0-1+deb11u4) ...
Selecting previously unselected package libxau6:amd64.
Preparing to unpack .../37-libxau6_1%3a1.0.9-1_amd64.deb ...
Unpacking libxau6:amd64 (1:1.0.9-1) ...
Selecting previously unselected package libxdmcp6:amd64.
Preparing to unpack .../38-libxdmcp6_1%3a1.1.2-3_amd64.deb ...
Unpacking libxdmcp6:amd64 (1:1.1.2-3) ...
Selecting previously unselected package libxcb1:amd64.
Preparing to unpack .../39-libxcb1_1.14-3_amd64.deb ...
Unpacking libxcb1:amd64 (1.14-3) ...
Selecting previously unselected package libx11-data.
Preparing to unpack .../40-libx11-data_2%3a1.7.2-1_all.deb ...
Unpacking libx11-data (2:1.7.2-1) ...
Selecting previously unselected package libx11-6:amd64.
Preparing to unpack .../41-libx11-6_2%3a1.7.2-1_amd64.deb ...
Unpacking libx11-6:amd64 (2:1.7.2-1) ...
Selecting previously unselected package libxpm4:amd64.
Preparing to unpack .../42-libxpm4_1%3a3.5.12-1_amd64.deb ...
Unpacking libxpm4:amd64 (1:3.5.12-1) ...
Selecting previously unselected package libgd3:amd64.
Preparing to unpack .../43-libgd3_2.3.0-2_amd64.deb ...
Unpacking libgd3:amd64 (2.3.0-2) ...
Selecting previously unselected package libgeoip1:amd64.
Preparing to unpack .../44-libgeoip1_1.6.12-7_amd64.deb ...
Unpacking libgeoip1:amd64 (1.6.12-7) ...
Selecting previously unselected package libicu67:amd64.
Preparing to unpack .../45-libicu67_67.1-7_amd64.deb ...
Unpacking libicu67:amd64 (67.1-7) ...
Selecting previously unselected package libluajit-5.1-common.
Preparing to unpack .../46-libluajit-5.1-common_2.1.0~beta3+dfsg-5.3_all.deb ...
Unpacking libluajit-5.1-common (2.1.0~beta3+dfsg-5.3) ...
Selecting previously unselected package libluajit-5.1-2:amd64.
Preparing to unpack .../47-libluajit-5.1-2_2.1.0~beta3+dfsg-5.3_amd64.deb ...
Unpacking libluajit-5.1-2:amd64 (2.1.0~beta3+dfsg-5.3) ...
Selecting previously unselected package libmaxminddb0:amd64.
Preparing to unpack .../48-libmaxminddb0_1.5.2-1_amd64.deb ...
Unpacking libmaxminddb0:amd64 (1.5.2-1) ...
Selecting previously unselected package nginx-common.
Preparing to unpack .../49-nginx-common_1.18.0-6.1+deb11u3_all.deb ...
Unpacking nginx-common (1.18.0-6.1+deb11u3) ...
Selecting previously unselected package libnginx-mod-http-auth-pam.
Preparing to unpack .../50-libnginx-mod-http-auth-pam_1.18.0-6.1+deb11u3_amd64.deb ...
Unpacking libnginx-mod-http-auth-pam (1.18.0-6.1+deb11u3) ...
Selecting previously unselected package libnginx-mod-http-cache-purge.
Preparing to unpack .../51-libnginx-mod-http-cache-purge_1.18.0-6.1+deb11u3_amd64.deb ...
Unpacking libnginx-mod-http-cache-purge (1.18.0-6.1+deb11u3) ...
Selecting previously unselected package libxml2:amd64.
Preparing to unpack .../52-libxml2_2.9.10+dfsg-6.7+deb11u3_amd64.deb ...
Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u3) ...
Selecting previously unselected package libnginx-mod-http-dav-ext.
Preparing to unpack .../53-libnginx-mod-http-dav-ext_1.18.0-6.1+deb11u3_amd64.deb ...
Unpacking libnginx-mod-http-dav-ext (1.18.0-6.1+deb11u3) ...
Selecting previously unselected package libnginx-mod-http-echo.
Preparing to unpack .../54-libnginx-mod-http-echo_1.18.0-6.1+deb11u3_amd64.deb ...
Unpacking libnginx-mod-http-echo (1.18.0-6.1+deb11u3) ...
Selecting previously unselected package libnginx-mod-http-fancyindex.
Preparing to unpack .../55-libnginx-mod-http-fancyindex_1.18.0-6.1+deb11u3_amd64.deb ...
Unpacking libnginx-mod-http-fancyindex (1.18.0-6.1+deb11u3) ...
Selecting previously unselected package libnginx-mod-http-geoip.
Preparing to unpack .../56-libnginx-mod-http-geoip_1.18.0-6.1+deb11u3_amd64.deb ...
Unpacking libnginx-mod-http-geoip (1.18.0-6.1+deb11u3) ...
Selecting previously unselected package libnginx-mod-http-geoip2.
Preparing to unpack .../57-libnginx-mod-http-geoip2_1.18.0-6.1+deb11u3_amd64.deb ...
Unpacking libnginx-mod-http-geoip2 (1.18.0-6.1+deb11u3) ...
Selecting previously unselected package libnginx-mod-http-headers-more-filter.
Preparing to unpack .../58-libnginx-mod-http-headers-more-filter_1.18.0-6.1+deb11u3_amd64.deb ...
Unpacking libnginx-mod-http-headers-more-filter (1.18.0-6.1+deb11u3) ...
Selecting previously unselected package libnginx-mod-http-image-filter.
Preparing to unpack .../59-libnginx-mod-http-image-filter_1.18.0-6.1+deb11u3_amd64.deb ...
Unpacking libnginx-mod-http-image-filter (1.18.0-6.1+deb11u3) ...
Selecting previously unselected package libnginx-mod-http-ndk.
Preparing to unpack .../60-libnginx-mod-http-ndk_1.18.0-6.1+deb11u3_amd64.deb ...
Unpacking libnginx-mod-http-ndk (1.18.0-6.1+deb11u3) ...
Selecting previously unselected package libnginx-mod-http-lua.
Preparing to unpack .../61-libnginx-mod-http-lua_1.18.0-6.1+deb11u3_amd64.deb ...
Unpacking libnginx-mod-http-lua (1.18.0-6.1+deb11u3) ...
Selecting previously unselected package libnginx-mod-http-perl.
Preparing to unpack .../62-libnginx-mod-http-perl_1.18.0-6.1+deb11u3_amd64.deb ...
Unpacking libnginx-mod-http-perl (1.18.0-6.1+deb11u3) ...
Selecting previously unselected package libnginx-mod-http-subs-filter.
Preparing to unpack .../63-libnginx-mod-http-subs-filter_1.18.0-6.1+deb11u3_amd64.deb ...
Unpacking libnginx-mod-http-subs-filter (1.18.0-6.1+deb11u3) ...
Selecting previously unselected package libnginx-mod-http-uploadprogress.
Preparing to unpack .../64-libnginx-mod-http-uploadprogress_1.18.0-6.1+deb11u3_amd64.deb ...
Unpacking libnginx-mod-http-uploadprogress (1.18.0-6.1+deb11u3) ...
Selecting previously unselected package libnginx-mod-http-upstream-fair.
Preparing to unpack .../65-libnginx-mod-http-upstream-fair_1.18.0-6.1+deb11u3_amd64.deb ...
Unpacking libnginx-mod-http-upstream-fair (1.18.0-6.1+deb11u3) ...
Selecting previously unselected package libxslt1.1:amd64.
Preparing to unpack .../66-libxslt1.1_1.1.34-4+deb11u1_amd64.deb ...
Unpacking libxslt1.1:amd64 (1.1.34-4+deb11u1) ...
Selecting previously unselected package libnginx-mod-http-xslt-filter.
Preparing to unpack .../67-libnginx-mod-http-xslt-filter_1.18.0-6.1+deb11u3_amd64.deb ...
Unpacking libnginx-mod-http-xslt-filter (1.18.0-6.1+deb11u3) ...
Selecting previously unselected package libnginx-mod-mail.
Preparing to unpack .../68-libnginx-mod-mail_1.18.0-6.1+deb11u3_amd64.deb ...
Unpacking libnginx-mod-mail (1.18.0-6.1+deb11u3) ...
Selecting previously unselected package libnginx-mod-nchan.
Preparing to unpack .../69-libnginx-mod-nchan_1.18.0-6.1+deb11u3_amd64.deb ...
Unpacking libnginx-mod-nchan (1.18.0-6.1+deb11u3) ...
Selecting previously unselected package libnginx-mod-stream.
Preparing to unpack .../70-libnginx-mod-stream_1.18.0-6.1+deb11u3_amd64.deb ...
Unpacking libnginx-mod-stream (1.18.0-6.1+deb11u3) ...
Selecting previously unselected package libnginx-mod-stream-geoip.
Preparing to unpack .../71-libnginx-mod-stream-geoip_1.18.0-6.1+deb11u3_amd64.deb ...
Unpacking libnginx-mod-stream-geoip (1.18.0-6.1+deb11u3) ...
Selecting previously unselected package libnginx-mod-stream-geoip2.
Preparing to unpack .../72-libnginx-mod-stream-geoip2_1.18.0-6.1+deb11u3_amd64.deb ...
Unpacking libnginx-mod-stream-geoip2 (1.18.0-6.1+deb11u3) ...
Selecting previously unselected package libwrap0:amd64.
Preparing to unpack .../73-libwrap0_7.6.q-31_amd64.deb ...
Unpacking libwrap0:amd64 (7.6.q-31) ...
Selecting previously unselected package nginx-extras.
Preparing to unpack .../74-nginx-extras_1.18.0-6.1+deb11u3_amd64.deb ...
Unpacking nginx-extras (1.18.0-6.1+deb11u3) ...
Selecting previously unselected package socat.
Preparing to unpack .../75-socat_1.7.4.1-3_amd64.deb ...
Unpacking socat (1.7.4.1-3) ...
Selecting previously unselected package jitsi-meet-web.
Preparing to unpack .../76-jitsi-meet-web_1.0.6991-1_all.deb ...
Unpacking jitsi-meet-web (1.0.6991-1) ...
Setting up libexpat1:amd64 (2.2.10-2+deb11u5) ...
Setting up libxau6:amd64 (1:1.0.9-1) ...
Setting up libicu67:amd64 (67.1-7) ...
Setting up libmaxminddb0:amd64 (1.5.2-1) ...
Setting up perl-modules-5.32 (5.32.1-4+deb11u2) ...
Setting up libbrotli1:amd64 (1.0.9-2+b2) ...
Setting up libnghttp2-14:amd64 (1.43.0-1) ...
Setting up libdeflate0:amd64 (1.7-1) ...
Setting up nginx-common (1.18.0-6.1+deb11u3) ...
Setting up libjbig0:amd64 (2.1-3.1+b2) ...
Setting up libcap2:amd64 (1:2.44-1) ...
Setting up libnginx-mod-http-uploadprogress (1.18.0-6.1+deb11u3) ...
Setting up libcap2-bin (1:2.44-1) ...
Setting up libjpeg62-turbo:amd64 (1:2.0.6-4) ...
Setting up libnginx-mod-http-auth-pam (1.18.0-6.1+deb11u3) ...
Setting up libwrap0:amd64 (7.6.q-31) ...
Setting up libx11-data (2:1.7.2-1) ...
Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ...
Setting up socat (1.7.4.1-3) ...
Setting up libnginx-mod-nchan (1.18.0-6.1+deb11u3) ...
Setting up libnginx-mod-http-ndk (1.18.0-6.1+deb11u3) ...
Setting up libluajit-5.1-common (2.1.0~beta3+dfsg-5.3) ...
Setting up libpng16-16:amd64 (1.6.37-3) ...
Setting up libmnl0:amd64 (1.0.4-3) ...
Setting up libnginx-mod-http-cache-purge (1.18.0-6.1+deb11u3) ...
Setting up libwebp6:amd64 (0.6.1-2.1) ...
Setting up fonts-dejavu-core (2.37-2) ...
Setting up libxtables12:amd64 (1.8.7-1) ...
Setting up libnginx-mod-http-echo (1.18.0-6.1+deb11u3) ...
Setting up libnginx-mod-http-subs-filter (1.18.0-6.1+deb11u3) ...
Setting up libmd0:amd64 (1.0.3-3) ...
Setting up sensible-utils (0.0.14) ...
Setting up libgeoip1:amd64 (1.6.12-7) ...
Setting up libssh2-1:amd64 (1.9.0-2) ...
Setting up libtiff5:amd64 (4.2.0-1+deb11u4) ...
Setting up libnginx-mod-http-geoip2 (1.18.0-6.1+deb11u3) ...
Setting up libbsd0:amd64 (0.11.3-1) ...
Setting up jitsi-meet-web (1.0.6991-1) ...
Setting up libelf1:amd64 (0.183-1) ...
Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u3) ...
Setting up libonig5:amd64 (6.9.6-1.1) ...
Setting up libgdbm6:amd64 (1.19-2) ...
Setting up libnginx-mod-http-dav-ext (1.18.0-6.1+deb11u3) ...
Setting up libnginx-mod-mail (1.18.0-6.1+deb11u3) ...
Setting up libxdmcp6:amd64 (1:1.1.2-3) ...
Setting up libxcb1:amd64 (1.14-3) ...
Setting up libnginx-mod-http-fancyindex (1.18.0-6.1+deb11u3) ...
Setting up libjq1:amd64 (1.6-2.1) ...
Setting up libnginx-mod-http-headers-more-filter (1.18.0-6.1+deb11u3) ...
Setting up cron (3.0pl1-137) ...
Adding group `crontab' (GID 101) ...
Done.
invoke-rc.d: could not determine current runlevel
invoke-rc.d: policy-rc.d denied execution of start.
Setting up libnginx-mod-stream (1.18.0-6.1+deb11u3) ...
Setting up libnginx-mod-http-upstream-fair (1.18.0-6.1+deb11u3) ...
Setting up libnginx-mod-stream-geoip (1.18.0-6.1+deb11u3) ...
Setting up libluajit-5.1-2:amd64 (2.1.0~beta3+dfsg-5.3) ...
Setting up libnginx-mod-http-geoip (1.18.0-6.1+deb11u3) ...
Setting up libfreetype6:amd64 (2.10.4+dfsg-1+deb11u1) ...
Setting up libgdbm-compat4:amd64 (1.19-2) ...
Setting up ucf (3.0043) ...
Setting up libperl5.32:amd64 (5.32.1-4+deb11u2) ...
Setting up jq (1.6-2.1) ...
Setting up libxslt1.1:amd64 (1.1.34-4+deb11u1) ...
Setting up libcurl4:amd64 (7.74.0-1.3+deb11u7) ...
Setting up libx11-6:amd64 (2:1.7.2-1) ...
Setting up curl (7.74.0-1.3+deb11u7) ...
Setting up libbpf0:amd64 (1:0.3-2) ...
Setting up libnginx-mod-http-lua (1.18.0-6.1+deb11u3) ...
Setting up libnginx-mod-stream-geoip2 (1.18.0-6.1+deb11u3) ...
Setting up libxpm4:amd64 (1:3.5.12-1) ...
Setting up fontconfig-config (2.13.1-4.2) ...
Setting up iproute2 (5.10.0-4) ...
Setting up libnginx-mod-http-xslt-filter (1.18.0-6.1+deb11u3) ...
Setting up perl (5.32.1-4+deb11u2) ...
Setting up libnginx-mod-http-perl (1.18.0-6.1+deb11u3) ...
Setting up libfontconfig1:amd64 (2.13.1-4.2) ...
Setting up libgd3:amd64 (2.3.0-2) ...
Setting up libnginx-mod-http-image-filter (1.18.0-6.1+deb11u3) ...
Setting up nginx-extras (1.18.0-6.1+deb11u3) ...
invoke-rc.d: could not determine current runlevel
invoke-rc.d: policy-rc.d denied execution of start.
Processing triggers for libc-bin (2.31-13+deb11u5) ...
root@15b0ae691623:/#general-discussions 

@rimelek Have posted the results by entering the container and running the docker build context commands. Kindly check.

Here are the results from he DockerFile :

ARG JITSI_REPO=jitsi
ARG BASE_TAG=stable
FROM ${JITSI_REPO}/base:${BASE_TAG}

RUN apt-get update
docker compose -f docker-compose.yml up --build --force-recreate 
[+] Building 2.8s (6/6) FINISHED                                                                                                                                                                                   
 => [internal] load build definition from Dockerfile                                                                                                                                                          0.0s
 => => transferring dockerfile: 1.21kB                                                                                                                                                                        0.0s
 => [internal] load .dockerignore                                                                                                                                                                             0.0s
 => => transferring context: 2B                                                                                                                                                                               0.0s
 => [internal] load metadata for docker.io/jitsi/base:stable                                                                                                                                                  0.1s
 => CACHED [1/2] FROM docker.io/jitsi/base:stable@sha256:1834b73753760e91a2775e87680665078ac59f50333c678233abaced7ad81dd3                                                                                     0.0s
 => [2/2] RUN apt-get update                                                                                                                                                                                  2.5s
 => exporting to image                                                                                                                                                                                        0.1s
 => => exporting layers                                                                                                                                                                                       0.1s
 => => writing image sha256:cc3457979d6e838b52c88b636fa4c6d878dbeb8cf8c4ce34e5fd1164cffbc41e                                                                                                                  0.0s 
 => => naming to docker.io/library/docker-myapp-meet-web                                                                                                                                              0.0s 
[+] Running 2/2                                                                                                                                                                                                    
 ✔ Network docker-myapp-meet_default  Created                                                                                                                                                         0.1s 
 ✔ Container myapp_meet_webserver     Created                                                                                                                                                         0.1s 
Attaching to myapp_meet_webserver
myapp_meet_webserver  | [s6-init] making user provided files available at /var/run/s6/etc...exited 0.
myapp_meet_webserver  | [s6-init] ensuring user provided files have correct perms...exited 0.
myapp_meet_webserver  | [fix-attrs.d] applying ownership & permissions fixes...
myapp_meet_webserver  | [fix-attrs.d] done.
myapp_meet_webserver  | [cont-init.d] executing container initialization scripts...
myapp_meet_webserver  | [cont-init.d] 01-set-timezone: executing... 
myapp_meet_webserver  | [cont-init.d] 01-set-timezone: exited 0.
myapp_meet_webserver  | [cont-init.d] done.
myapp_meet_webserver  | [services.d] starting services
myapp_meet_webserver  | [services.d] done.

docker stats shows a consistent container running:


CONTAINER ID   NAME                           CPU %     MEM USAGE / LIMIT   MEM %     NET I/O      BLOCK I/O     PIDS
338ad7af8c6d   myapp_meet_webserver   0.00%     576KiB / 7.76GiB    0.01%     1.5kB / 0B   0B / 81.9kB   2

After entering the container, I also tried

apt-dpkg-wrap apt-get update

I get this:

apt-dpkg-wrap apt-get update
Hit:1 http://deb.debian.org/debian bullseye InRelease
Hit:2 http://deb.debian.org/debian-security bullseye-security InRelease                   
Hit:3 http://deb.debian.org/debian bullseye-updates InRelease                                             
Hit:4 http://ftp.debian.org/debian bullseye-backports InRelease                                           
Hit:5 https://download.jitsi.org stable/ InRelease                                  
Reading package lists... Done

All seems to be working inside the container.

If you just put everything in one code block including what you want to say to us so we basically need to do a research just to understand what you would like to say, there is a good chance you will notice fewer and fewer responses.

I fixed your post again, but this was the last time. As we always say, please “help us to help you”. The best question is which gives us the least amount of extra work to understand it.

So it seems my guess was right

Can you share the content of the your copied rootfs folder? Fous on apt-related config first. If you have more than 2 o 3 files, then just share the filenames so we can tell you which one we would like to see.

And obviously remove passwords (if you have any in that folder) any any secret before sharing.

Apologies at the outset. I thought I did the formatting right this time round. Okay, regarding rootfs folder I can share the folder with you guys but it is the same as these ones here in this linked attached below since I haven’t touched anything:

I did check the contents of the rootfs folder. I couldn’t find anything related to apt-related config.