GithubHelp home page GithubHelp logo

jaredricesr / containerfile Goto Github PK

View Code? Open in Web Editor NEW

This project forked from mafintosh/containerfile

0.0 2.0 0.0 11 KB

Containerfile parser and stringifier

License: MIT License

JavaScript 100.00%

containerfile's Introduction

containerfile

Containerfile parser and stringifier

npm install containerfile

Usage

var containerfile = require('containerfile')

var parsed = containerfile.parse(`
  FROM ubuntu:xenial
  RUN rm -f /etc/resolv.conf && echo '8.8.8.8' > /etc/resolv.conf
  RUN apt-get update
  RUN apt-get install -y git vim curl
  RUN curl -fs https://raw.githubusercontent.com/mafintosh/node-install/master/install | sh
  RUN node-install 8.9.1
`)

// prints the parsed file
console.log(parsed)

// serializes it again
console.log(containerfile.stringify(parsed))

Syntax

The format is similar to a Dockerfile.

FROM os:version
RUN shell-command
COPY from/local/file /to/container/path
ENV key=value key2=value2
ARG key=value

Alternatively if you are referencing another Containerfile or disk image you can do

FROM ./path/to/disk/image/or/containerfile

If your shell command is long you can split it into multiple lines using the familiar \\ syntax

RUN apt-get update && \\
  apt-get install -y git vim curl

To comment out a line add # infront.

To force run a command (i.e. cache bust it) you can prefix any command with FORCE.

API

var parsed = containerfile.parse(string)

Parse the content of a Containerfile. Returns an array of objects, each representing a line.

// FROM os:version
{
  type: 'from',
  image: 'os',
  version: 'version',
  path: null
}

// FROM ./path
{
  type: 'from',
  image: null,
  version: null,
  path: './path'
}

// RUN command
{
  type: 'run',
  command: 'command'
}

// COPY from to
{
  type: 'copy',
  from: 'from',
  to: 'to'
}

// ENV key=value key2="value 2" ...
{
  type: 'env',
  env: [{
    key: 'key',
    value: 'value'
  }, {
    key: 'key2',
    value: 'value 2'
  }]
}

// ARG key=value
{
  type: 'arg',
  key: 'key',
  value: 'value'
}

// ARG key
{
  type: 'arg',
  key: 'key',
  value: null
}

If a command is prefixed with FORCE, force: true will be set on the object.

var str = containerfile.stringify(parsed)

Serialize a parsed object back to the Containerfile format

License

MIT

containerfile's People

Contributors

mafintosh avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.