This repository has been archived by the owner on Aug 7, 2018. It is now read-only.
-
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.
Updated to be based off Node so I can install spacejam for testing/coverage reports. Hope is that I can eventually move back to not needing to be based off the Node image, base image is still just Meteor.
- Loading branch information
Showing
2 changed files
with
18 additions
and
2 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
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,14 @@ | ||
FROM debian:jessie | ||
MAINTAINER Steve Lambe <@firrae> | ||
|
||
ENV LANG C | ||
ENV LC_ALL "C" | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y git curl libfontconfig && \ | ||
apt-get clean && \ | ||
rm -Rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | ||
|
||
RUN curl https://install.meteor.com/ | sh | ||
|
||
CMD ["/bin/bash"] |