Skip to content

Latest commit

 

History

History
54 lines (33 loc) · 1.08 KB

File metadata and controls

54 lines (33 loc) · 1.08 KB

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