Skip to content

DannyBen/docker-rush

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Ubuntu docker with Rush

Source code on GitHub | Image on DockerHub


This image is based on ubuntu and contains the Rush package manager.

It was designed to help in building docker images that need Rush packages.

Usage

Using as a sandbox

To play with rush in a docker sandbox, run:

$ docker run --rm -it --entrypoint bash dannyben/rush
> rush --help

Using as a base image

In your Dockerfile, do this:

FROM dannyben/rush

# Run any rush command normally, for example:
RUN rush snatch you your-package 

# ... rest of your dockerfile

Tags

You may request specific Rush versions, by specifing one of these tags. For example:

FROM dannyben/rush:0.7.11