Skip to content

Issue building bldr on a podman installation #204

@chainmail

Description

@chainmail

Building bldr on a podman base results in the following issue: cloudflare/workers-sdk#9755
Can be fixed with this snippet (from that link and an additional exclusion):

`#!/bin/bash

# Shim to replace Docker CLI with Podman and strip unsupported flags
ARGS=()
for arg in "$@"; do
if [[ "$arg" != --provenance* && "$arg" != --push* ]]; then
ARGS+=("$arg")
fi
done
exec podman "${ARGS[@]}"`

Of course permissions and path need to be set as well.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions