-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
sam
committed
Oct 7, 2016
1 parent
93c241c
commit 5ed3279
Showing
3 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'); | ||
} | ||
|
||
}); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.