Open adamgins opened 7 years ago
Update I changed the .dockerignore
to
.git
.meteor/local
node_modules
and now I am getting https://github.com/jshimko/meteor-launchpad/issues/80 not sure if this issue is further along or behind.
Also I am currently on Meteor 1.5.2 and using FROM jshimko/meteor-launchpad:latest
That's definitely going to be an issue if you're not overriding the NODE_VERSION. Meteor 1.5.2 definitely doesn't support Node 8. If you're not going to update Meteor, I don't recommend using the latest
tag here because it's always intended to support the latest official release of Meteor.
This base image is already smart enough to install the version of Meteor that your app uses, but the Node version gets bumped every time Meteor pushes another release with a Node version change. To override the version...
docker build \
--build-arg NODE_VERSION="4.8.4" \
--build-arg TOOL_NODE_FLAGS="--max-old-space-size=2048" \
-t buzzybuzz/buzzy-main .
Thanks for Launchpad.
Any ideas why I'd be getting this error pls:
Seems to be realted to https://atmospherejs.com/lookback/emails
Build command
docker build --build-arg TOOL_NODE_FLAGS="--max-old-space-size=2048" -t buzzybuzz/buzzy-main .
Launchpad.conf
Also I am currently on Meteor 1.5.2 and using
FROM jshimko/meteor-launchpad:latest