Skip to content

Commit

Permalink
ready for export
Browse files Browse the repository at this point in the history
  • Loading branch information
sam committed Oct 7, 2016
1 parent 93c241c commit 5ed3279
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM semtech/mu-nginx-spa-proxy:1.0.1

MAINTAINER Erika Pauwels <[email protected]>

ENV STATIC_FOLDERS_REGEX "^/(assets|font|images)/"

RUN apt-get update; apt-get upgrade -y; apt-get install -y unzip wget;
COPY package.json /package.json
RUN mkdir /app; cd /app; wget https://github.com/big-data-europe/ember-pipeline-builder-frontend/releases/download/v$(cat /package.json | grep version | head -n 1 | awk -F: '{ print $2 }' | sed 's/[ ",]//g')/dist.zip
RUN cd /app; unzip dist.zip; mv dist/* .
RUN rm /app/dist.zip package.json
9 changes: 9 additions & 0 deletions app/routes/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import Ember from 'ember';

export default Ember.Route.extend({

beforeModel() {
this.transitionTo('welcome');
}

});
Binary file added public/assets/company.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 5ed3279

Please sign in to comment.