aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-06-26 00:10:42 +0300
committerValentin Popov <info@valentineus.link>2020-06-26 00:10:42 +0300
commit184bff19e6eb2575c80fd919dc6a1e97a0842d65 (patch)
tree90862194eb5ab918921ac45b1de5eb9e4cfe9bea
parent27dfadc19966ce92536b4806325739943ba880c1 (diff)
downloaddocker-meteor-184bff19e6eb2575c80fd919dc6a1e97a0842d65.tar.xz
docker-meteor-184bff19e6eb2575c80fd919dc6a1e97a0842d65.zip
Added "latest" Dockerfile
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r--latest/Dockerfile24
1 files changed, 24 insertions, 0 deletions
diff --git a/latest/Dockerfile b/latest/Dockerfile
new file mode 100644
index 0000000..1fbbc05
--- /dev/null
+++ b/latest/Dockerfile
@@ -0,0 +1,24 @@
+FROM ubuntu:rolling
+LABEL maintainer="info@valentineus.link"
+
+ENV METEOR_ALLOW_SUPERUSER="true"
+
+ARG release
+
+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
+WORKDIR "/workspace"
+CMD [ "/usr/local/bin/meteor", "run" ]