https://github.com/awochna/ember-env
Dockerfile for an ember-cli environment
https://github.com/awochna/ember-env
Last synced: 2 months ago
JSON representation
Dockerfile for an ember-cli environment
- Host: GitHub
- URL: https://github.com/awochna/ember-env
- Owner: awochna
- License: mit
- Created: 2016-04-03T00:48:46.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-06T03:51:17.000Z (about 9 years ago)
- Last Synced: 2025-01-29T11:26:37.272Z (4 months ago)
- Homepage: http://hub.docker.com/r/awochna/ember-env
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ember-env #
Dockerfile for an ember-cli environment.
This docker image is meant to provide a suitable environment for development of an Ember application using ember-cli and friends.
It doesn't use an `ENTRYPOINT` and the default command is `bash`, so it really just gives you the environment.
It's suitable for use in Continuous Integration or when you want to make use of node, npm, bower, or ember in the environment without having to install anything on your workstation.It uses:
* ember-cli 2.4.3
* the latest version of bower
* PhantomJS 1.9.8 (see issue #3 for explanation)
* the latest version of node LTS
* Ubuntu 14.04 LTSUse it from your ember project directory like so:
docker run -it -P -v "$PWD":/usr/src/app awochna/ember-env
It exposes ports 4200 (for `ember serve`) and 35729 (for livereload), so with the above `-P` flag, you can point your browser to `http://localhost:4200` like you would with local development.
It has `NODE_ENV` set to `production` by default, so you may want to change that.
I'm not here to judge.