
Security News
OpenClaw Skill Marketplace Emerges as Active Malware Vector
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.
docker-build
Advanced tools
Docker build as a duplex stream. Pipe in a tar stream and pipe out the build output
npm install docker-build
var build = require('docker-build')
var fs = require('fs')
fs.createReadStream('a-tar-file-with-a-dockerfile.tar')
.pipe(build('my-new-image'))
.pipe(process.stdout)
The above example will build a docker image from the input tarball and pipe the build output to stdout using docker running locally on port 2375.
var stream = build(tag, [options])
options can contain the following:
{
host: '/var/run/docker.sock', // host to docker
cache: true, // whether or not to use docker fs cache (defaults to true)
quiet: false, // be quiet - defaults to false,
registry: conf // add a registry config
}
There is a command line too available as well
$ npm install -g docker-build
$ docker-build --help
Running docker-build some-image-tag will build current working directory
MIT
FAQs
docker build as a duplex stream
The npm package docker-build receives a total of 18 weekly downloads. As such, docker-build popularity was classified as not popular.
We found that docker-build demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.