From 54bad5dd26ecb627ab5312da328e17c4be965d4c Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Tue, 14 Aug 2018 20:28:36 +0400 Subject: Added release 1.7 Signed-off-by: Valentin Popov --- default/latest/Dockerfile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 default/latest/Dockerfile (limited to 'default/latest/Dockerfile') 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 -- cgit v1.2.3