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
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}