From 184bff19e6eb2575c80fd919dc6a1e97a0842d65 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Fri, 26 Jun 2020 01:10:42 +0400 Subject: Added "latest" Dockerfile Signed-off-by: Valentin Popov --- latest/Dockerfile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 latest/Dockerfile 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" ] -- cgit v1.2.3