Skip to content

Commit

Permalink
Updating base image node version, cleaning up redundant commands
Browse files Browse the repository at this point in the history
  • Loading branch information
andredumas committed Dec 14, 2015
1 parent c241f75 commit ecfe1fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
7 changes: 2 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
FROM node:0.12-onbuild
FROM node:4.2-onbuild
MAINTAINER André Dumas

# Reconfigure timezone
#RUN ln -sf /usr/share/zoneinfo/US/Eastern /etc/localtime \
# && echo "US/Eastern" > /etc/timezone \
# && dpkg-reconfigure --frontend noninteractive tzdata

EXPOSE 8000

ENTRYPOINT ["npm"]
CMD ["start"]
EXPOSE 8000
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ running container.
```shell
git clone --recursive https://github.com/andredumas/techan.js.git
cd techan.js
docker build -t techan.js .
docker run --rm -it -p 8000:8000 techan.js
docker build -t andredumas/techan.js .
docker run --rm -it -p 8000:8000 andredumas/techan.js
```

As above, browse to [http://localhost:8000/examples/](http://localhost:8000/examples/) to see the examples.

0 comments on commit ecfe1fb

Please sign in to comment.