aboutsummaryrefslogtreecommitdiff
path: root/default/1.7/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'default/1.7/Dockerfile')
-rw-r--r--default/1.7/Dockerfile26
1 files changed, 26 insertions, 0 deletions
diff --git a/default/1.7/Dockerfile b/default/1.7/Dockerfile
new file mode 100644
index 0000000..e6d820c
--- /dev/null
+++ b/default/1.7/Dockerfile
@@ -0,0 +1,26 @@
+FROM debian:stable-slim
+LABEL maintainer="info@valentineus.link"
+
+ENV METEOR_ALLOW_SUPERUSER="true"
+ENV RELEASE="1.7"
+WORKDIR "/workspace"
+
+RUN set -ex \
+ && apt-get update \
+ && apt-get --no-install-recommends --no-install-suggests --yes install \
+ ca-certificates \
+ curl \
+ git \
+ openssl \
+ && curl https://install.meteor.com | sed 's/^RELEASE=.*/RELEASE=${RELEASE}/g' | sh \
+ && apt-get --purge --yes remove curl \
+ && apt-get --purge --yes autoremove \
+ && apt-get clean \
+ && find /tmp -type f -exec rm {} \; \
+ && find /var/cache -type f -exec rm {} \; \
+ && find /var/lib/apt/lists -type f -exec rm {} \; \
+ && find /var/log -type f -exec rm {} \; \
+ && find /var/tmp -type f -exec rm {} \;
+
+EXPOSE 3000
+CMD [ "/usr/local/bin/meteor", "run" ] \ No newline at end of file