File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -35,6 +35,11 @@ RUN chown -R $GITUSER:$GITUSER $GITHOME
3535# let the git user run `sudo /home/git/builder` (not writeable)
3636RUN echo "%git ALL=(ALL:ALL) NOPASSWD:/home/git/builder" >> /etc/sudoers
3737
38+ # HACK: import progrium/cedarish as a tarball
39+ # see https://github.com/deis/deis/issues/1027
40+ RUN wget -O /progrium_cedarish.tar --progress=dot:giga \
41+ https://s3-us-west-2.amazonaws.com/opdemand/progrium_cedarish_2014.05.27.tar
42+
3843# add the current build context to /app
3944ADD . /app
4045RUN chown -R root:root /app
Original file line number Diff line number Diff line change @@ -53,6 +53,10 @@ while [[ ! -e /var/run/docker.sock ]]; do
5353 sleep 1
5454done
5555
56+ # HACK: load progrium/cedarish tarball for faster boot times
57+ # see https://github.com/deis/deis/issues/1027
58+ docker load -i /progrium_cedarish.tar
59+
5660# pull required images
5761docker pull deis/slugbuilder:latest
5862docker pull deis/slugrunner:latest
You can’t perform that action at this time.
0 commit comments