New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@gve/releases

Package Overview
Dependencies
Maintainers
2
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gve/releases

Build Docker images and deploy containers to Google Cloud or OpenShift

latest
Source
npmnpm
Version
0.8.4
Version published
Maintainers
2
Created
Source

Releases

Build Docker images and deploy containers to Google Cloud or OpenShift.

Installation

Install with npm.

npm i @gve/releases

Usage

const { OpenShiftRelease } = require("@gve/releases");

// Create the release.
const projectName = "OpenShift project name or Google Cloud project ID";
const release = new OpenShiftRelease(projectName);

// Build its Docker image.
release.build();

// Intermediate step: Use the Docker CLI to upload the image to its image repository.

// Build a deployment and release it to OpenShift.
release.buildDeployment();
release.release();
  • Creates a scoped, named, and tagged Docker image
  • Creates its deployment files for release
  • Pushes the deployment files to the run platform, e.g, OpenShift

License

Apache 2.0

FAQs

Package last updated on 31 Mar 2022

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