aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2018-08-14 19:28:36 +0300
committerValentin Popov <info@valentineus.link>2018-08-14 19:33:55 +0300
commit54bad5dd26ecb627ab5312da328e17c4be965d4c (patch)
tree42653323d776b32e83345ed129eaa0eeefb27287
parent235a75ab098e9de5992415bb482f48f401a100a6 (diff)
downloaddocker-meteor-54bad5dd26ecb627ab5312da328e17c4be965d4c.tar.xz
docker-meteor-54bad5dd26ecb627ab5312da328e17c4be965d4c.zip
Added release 1.7
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r--build/1.7/Dockerfile26
-rw-r--r--build/latest/Dockerfile25
-rw-r--r--default/1.7/Dockerfile26
-rw-r--r--default/latest/Dockerfile25
4 files changed, 102 insertions, 0 deletions
diff --git a/build/1.7/Dockerfile b/build/1.7/Dockerfile
new file mode 100644
index 0000000..df86a0c
--- /dev/null
+++ b/build/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 \
+ build-essential \
+ ca-certificates \
+ curl \
+ git \
+ openssl \
+ && curl https://install.meteor.com | sed 's/^RELEASE=.*/RELEASE=${RELEASE}/g' | sh \
+ && 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
diff --git a/build/latest/Dockerfile b/build/latest/Dockerfile
new file mode 100644
index 0000000..24caab0
--- /dev/null
+++ b/build/latest/Dockerfile
@@ -0,0 +1,25 @@
+FROM debian:stable-slim
+LABEL maintainer="info@valentineus.link"
+
+ENV METEOR_ALLOW_SUPERUSER="true"
+WORKDIR "/workspace"
+
+RUN set -ex \
+ && apt-get update \
+ && apt-get --no-install-recommends --no-install-suggests --yes install \
+ build-essential \
+ ca-certificates \
+ curl \
+ git \
+ openssl \
+ && curl https://install.meteor.com | sh \
+ && 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
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
diff --git a/default/latest/Dockerfile b/default/latest/Dockerfile
new file mode 100644
index 0000000..c96e231
--- /dev/null
+++ b/default/latest/Dockerfile
@@ -0,0 +1,25 @@
+FROM debian:stable-slim
+LABEL maintainer="info@valentineus.link"
+
+ENV METEOR_ALLOW_SUPERUSER="true"
+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 | 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