Error relocating better_sqlite3.node: fcntl64: symbol not found when building Docker image

@Eventyret

Strapi 4.6.1

Container configuration
- name: strapi
          image: ${NODE_IMAGE}
          env:
            - name: PORT
              value: "1337"
            - name: HOST
              value: "0.0.0.0"
            - name: APP_KEYS
              value: ${APP_KEYS}
            - name: API_TOKEN_SALT
              value: ${API_TOKEN_SALT}
            - name: ADMIN_JWT_SECRET
              value: ${ADMIN_JWT_SECRET}
            - name: JWT_SECRET
              value: ${JWT_SECRET}
          ports:
            - containerPort: 1337
              protocol: TCP
          imagePullPolicy: Always
          volumeMounts:
            - name: shared-data
              mountPath: /opt/app
          command: [sh, -c]
          args: ["cd /opt/app && npm run develop"]