Skip to content
This repository has been archived by the owner on Aug 7, 2018. It is now read-only.

Commit

Permalink
Changed to Node base image
Browse files Browse the repository at this point in the history
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
firrae committed Jul 14, 2016
1 parent d020767 commit 3ff4073
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:jessie
FROM node:4-wheezy
MAINTAINER Steve Lambe <@firrae>

ENV LANG C
Expand All @@ -7,7 +7,9 @@ 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/*
rm -Rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

RUN npm i -g spacejam

RUN curl https://install.meteor.com/ | sh

Expand Down
14 changes: 14 additions & 0 deletions base/Dockerfile
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"]

0 comments on commit 3ff4073

Please sign in to comment.