A docker image with Sencha SenchaCmd-5.0.0.160
2.8K
What's in this image
This image is based of Ubuntu 12.04
How to use it?
pull the image
docker pull moduscreate/sencha
Dockerize your sencha app by creating a Dockerfile
FROM moduscreate/sencha
RUN apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get install nano libfontconfig1 git -y
ADD . /usr/src/app
WORKDIR /usr/src/app
RUN npm install
RUN chmod +x /opt/Sencha/Cmd/5.0.0.160/bin/linux-x64/phantomjs/phantomjs
RUN export PATH=/opt/Sencha/Cmd/5.0.0.160:$PATH && sencha app build
EXPOSE 3000
CMD ["server.js"]
This is just a sample docker file. Please modify this to suit your needs. If you need any other versions of sencha command please or have a question please feel free to tweet us at @moduscreate or write a comments below.
Content type
Image
Digest
sha256:568522119…
Size
532.9 MB
Last updated
almost 11 years ago
docker pull moduscreate/sencha