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.
Merge pull request #1 from firrae/master
Updating base with fixed locale
- Loading branch information
Showing
2 changed files
with
14 additions
and
4 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 |
---|---|---|
@@ -1,13 +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 && \ | ||
apt-get clean && \ | ||
rm -Rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | ||
|
||
RUN curl https://install.meteor.com/ | sh | ||
|
||
RUN export LC_ALL=C | ||
|
||
CMD [] | ||
CMD ["/bin/bash"] |
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 |
---|---|---|
@@ -1 +1,10 @@ | ||
meteor-testing-image | ||
Why did I make another image that is about Meteor? Well the simple answer is I couldn't find one that was simple, plain, and worked with my testing needs. | ||
The main branch of this docker image will be kept as up to date as I can. I plan on trying to find a way to have it when Meteor updates it builds for the new release. | ||
The main branch will also be updated as I need to add specific packages to get things to work for me in my environment, please feel free to use the "base" version if you just want Debian and the basic Meteor install. | ||
|
||
What is in this image: | ||
- Debian:jessie | ||
- Meteor (1.3.4.1 as of this build) | ||
|
||
Note, to install NPM packages it is recommended to use "meteor npm install" and as such I have not incuded any other version of Node or NPM, this image is big enough as it is. Please preface any Node or NPM commands with "meteor" or you can install Node as a step in your build/testing process. | ||
Luckily the Meteor tool is good at updating itself if it sees a differednt version in your .meteor folder, so nothing should break, but your tests might take a bit longer. |