Is it possible to deploy a full Meteor App in private server without having to download packages

Hi guys,

I’m working a Meteor POC and I want to know if is it possible to deploy a full Meteor App in private server without having to download packages.

So in my company we haven’t access to Internet for security issues. I thought to use a docker container. Have any one have another way.

Best regards

Ismael

If you mean a production deployment of a Meteor app, then the answer is yes.

Once your app is working in development you can issue a meteor build command (see documentation) which is a tarball of a vanilla node app. You may explode this into your container for use.

1 Like

Thanks I will test it :slight_smile: