Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

run: add support for inline --network in RUN statements #4566

Merged
merged 2 commits into from
Mar 14, 2023

Commits on Mar 13, 2023

  1. vendor: bump imagebuilder to a3c3f8358ca31b1e4daa6

    We need commit openshift/imagebuilder@598142f
    
    Signed-off-by: Aditya R <arajan@redhat.com>
    flouthoc committed Mar 13, 2023
    Configuration menu
    Copy the full SHA
    e2210c3 View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2023

  1. run: add support for inline --network in RUN stmt

    Buildah should allow clients to support inline --network in RUN stmts so users
    can create isolate or expose a particular build containers.
    
    ```Dockerfile
    FROM alpine
    RUN --network=host wget google.com
    RUN --network=none wget google.com
    ```
    
    Closes: containers#4230
    
    Signed-off-by: Aditya R <arajan@redhat.com>
    flouthoc committed Mar 14, 2023
    Configuration menu
    Copy the full SHA
    37afb5d View commit details
    Browse the repository at this point in the history