diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..500fac4 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,16 @@ +.git +.tmp +.idea +.grunt +.sass-cache +.project +.c9 +.DS_Store +atlassian-ide-plugin.xml +app/bower_components +coverage +db +coverage +docs +dist +node_modules \ No newline at end of file diff --git a/.gitignore b/.gitignore index 3dbb9ef..d1a8e31 100755 --- a/.gitignore +++ b/.gitignore @@ -6,15 +6,10 @@ .project .c9 .DS_Store - - atlassian-ide-plugin.xml - - app/bower_components coverage db -www coverage docs dist diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..75e5980 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,22 @@ +### +# docker-angular-cms +# This is the docker container for angular-cms +### +FROM ubuntu:14.04 +MAINTAINER Jonnie Spratley + +WORKDIR . +COPY . /angular-cms + +RUN apt-get update && apt-get install -y \ + git \ + npm \ + nodejs + +RUN ln -s /usr/bin/nodejs /usr/local/bin/node + +RUN cd /angular-cms \ + npm install + +EXPOSE 1339 +CMD ["npm", "start"] \ No newline at end of file diff --git a/app/views/main.html b/app/views/main.html index 2331017..ff05022 100755 --- a/app/views/main.html +++ b/app/views/main.html @@ -9,7 +9,6 @@

{{App.feature.body}} -