Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 909 Bytes

README.md

File metadata and controls

32 lines (22 loc) · 909 Bytes

Sencha Cmd docker image for building ExtJS projects

For more recent images, see rockmagicnet's work on DockerHub or on Github.

One can pull this image using:

  • version 3.0.2

    docker pull cvagner/sencha-cmd:3.0.2

Using image for automated builds

To build app in working directory use the following command:

docker run --rm -v `pwd`:/app -w /app \
  cvagner/sencha-cmd:3.0.2 \
  app build

Note that the absolute path is provided with pwd command.

For Sencha Cmd instructions please refer the official documentation at https://docs.sencha.com/cmd/

For building and publishing an image :

VERSION_TAG=3.0.2
docker login
cd ${VERSION_TAG}
docker build --tag=cvagner/sencha-cmd:${VERSION_TAG} .
docker push cvagner/sencha-cmd:${VERSION_TAG}