Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@blitzm/aws-container-registry

Package Overview
Dependencies
Maintainers
4
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@blitzm/aws-container-registry

@blitzm/azure-cdn is a typescript library for simplifying the process of creating a ECR and pushing docker image to the ECR

  • 0.2.1
  • latest
  • npm
  • Socket score

Version published
Maintainers
4
Created
Source

Blitzm Cloud - AWS Container Registry

@blitzm/azure-cdn is a typescript library for simplifying the process of creating a ECR and pushing docker image to the ECR

Installation

This package can be installed using npm

npm install --save --save-exact @blitzm/azure-cdn

Usage

import { AWSContainerRegistry } from "@blitzm/aws-container-registry"

const dockerRepo = new AWSContainerRegistry("my-docker-repo", {
    // allow push access from your cluster
    pushAccess: [cluster.nodeRole],
    // allow pull access from your cluster
    pullAccess: [cluster.nodeRole]
  });

// Build the push the image
// The result is the unique ID pointing to that pushed image in this repo.
const imageName = new dockerRepo.buildAndPushImage('app', {
  context: path.resolve(__dirname, '../app/')
  })

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

Blitzm

FAQs

Package last updated on 28 Jun 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc