File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,5 +10,8 @@ insert_final_newline = true
1010indent_style = space
1111indent_size = 4
1212
13+ [Makefile ]
14+ indent_style = tab
15+
1316[* .go ]
1417indent_style = tab
Original file line number Diff line number Diff line change 1+ build
Original file line number Diff line number Diff line change @@ -72,3 +72,8 @@ test-unit:
7272test-functional :
7373 @docker history deis/test-etcd > /dev/null 2>&1 || docker pull deis/test-etcd:latest
7474 GOPATH=` cd ../tests/ && godep path` :$(GOPATH ) go test -v ./tests/...
75+
76+ cedarish/build :
77+ mkdir -p build
78+ docker pull progrium/cedarish:latest
79+ docker save progrium/cedarish:latest | gzip -9 > build/progrium_cedarish_$(shell date "+% Y_% m_% d") .tar.gz
Original file line number Diff line number Diff line change @@ -43,8 +43,8 @@ RUN echo "%git ALL=(ALL:ALL) NOPASSWD:/home/git/builder" >> /etc/sudoers
4343
4444# HACK: import progrium/cedarish as a tarball
4545# see https://github.com/deis/deis/issues/1027
46- RUN curl -#SL -o /progrium_cedarish.tar \
47- https://s3-us-west-2.amazonaws.com/opdemand/progrium_cedarish_2014_10_01 .tar
46+ RUN curl -#SL -o /progrium_cedarish.tar.gz \
47+ https://s3-us-west-2.amazonaws.com/opdemand/progrium_cedarish_2014_12_15 .tar.gz
4848
4949# define the execution environment
5050# use VOLUME to remove /var/lib/docker from copy-on-write for performance
Original file line number Diff line number Diff line change 6363# see https://github.com/deis/deis/issues/1027
6464if ! docker history progrium/cedarish > /dev/null 2> /dev/null ; then
6565 echo " Loading cedarish..."
66- docker load -i /progrium_cedarish.tar
66+ gzip -dc /progrium_cedarish.tar.gz | docker load
6767else
6868 echo " Cedarish already loaded"
6969fi
You can’t perform that action at this time.
0 commit comments