Skip to main content
Home

@fx/buildx@0.1.1
Built and signed on GitHub Actions

A ready-to-use CI/CD Pipeline for building OCI images with Docker Buildx

This package works with Node.js, Deno, Bun
This package works with Node.js
This package works with Deno
This package works with Bun
JSR Score
76%
Published
8 months ago (0.1.1)

Module: Buildx

dagger-min-version deno compatibility ci

This is a Dagger module for building an OCI image of your project using buildx.

🚀 Usage

dagger -m github.com/tsirysndr/daggerverse/buildx call \
  dev --src <source> terminal

🧑‍🔬 Example

dagger -m github.com/tsirysndr/daggerverse/buildx call \
  dev --src . terminal

dagger -m github.com/tsirysndr/daggerverse/buildx call \
  build --src . \
  --tag my-app \
  --platform linux/amd64,linux/arm64

✨ Jobs

Name Description
dev Start a development environment
build Build an OCI image of the project
publish Publish the OCI image to a registry

🧑‍💻 Programmatic usage

import { build } from 'jsr:@fx/buildx';

await plan(".");
await build(".", "my-app", "linux/amd64,linux/arm64");
Built and signed on
GitHub Actions

New Ticket: Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Add Package

deno add jsr:@fx/buildx

Import symbol

import * as buildx from "@fx/buildx";
or

Import directly with a jsr specifier

import * as buildx from "jsr:@fx/buildx";

Add Package

pnpm i jsr:@fx/buildx
or (using pnpm 10.8 or older)
pnpm dlx jsr add @fx/buildx

Import symbol

import * as buildx from "@fx/buildx";

Add Package

yarn add jsr:@fx/buildx
or (using Yarn 4.8 or older)
yarn dlx jsr add @fx/buildx

Import symbol

import * as buildx from "@fx/buildx";

Add Package

npx jsr add @fx/buildx

Import symbol

import * as buildx from "@fx/buildx";

Add Package

bunx jsr add @fx/buildx

Import symbol

import * as buildx from "@fx/buildx";