commit 27da2f670411515d997bcebe50ef7203faf042ea Author: Seán C McCord Date: Sun Mar 3 22:50:26 2019 -0500 initial import diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ec722be --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM node:latest + +RUN useradd -m -s /bin/bash meteor +RUN su -c "curl -o /tmp/meteor.sh 'https://install.meteor.com?release=1.5.2'; sh /tmp/meteor.sh; rm -f /tmp/meteor.sh" meteor +RUN cp "/home/meteor/.meteor/packages/meteor-tool/1.5.2/mt-os.linux.x86_64/scripts/admin/launch-meteor" /usr/bin/meteor +