From 7f34aa302f10ed529e05ad662281ed34607e6f54 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Tue, 14 Nov 2017 02:15:09 +0400 Subject: Initial commit --- build/1.4/Dockerfile | 26 ++++++++++++++++++++++++++ build/1.5/Dockerfile | 26 ++++++++++++++++++++++++++ build/1.6/Dockerfile | 26 ++++++++++++++++++++++++++ default/1.4/Dockerfile | 26 ++++++++++++++++++++++++++ default/1.5/Dockerfile | 26 ++++++++++++++++++++++++++ default/1.6/Dockerfile | 26 ++++++++++++++++++++++++++ 6 files changed, 156 insertions(+) create mode 100644 build/1.4/Dockerfile create mode 100644 build/1.5/Dockerfile create mode 100644 build/1.6/Dockerfile create mode 100644 default/1.4/Dockerfile create mode 100644 default/1.5/Dockerfile create mode 100644 default/1.6/Dockerfile diff --git a/build/1.4/Dockerfile b/build/1.4/Dockerfile new file mode 100644 index 0000000..dcd9d3f --- /dev/null +++ b/build/1.4/Dockerfile @@ -0,0 +1,26 @@ +FROM debian:stable-slim +LABEL maintainer="info@valentineus.link" + +ENV METEOR_ALLOW_SUPERUSER="true" +ENV RELEASE="1.4" +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/1.5/Dockerfile b/build/1.5/Dockerfile new file mode 100644 index 0000000..cb7fcf5 --- /dev/null +++ b/build/1.5/Dockerfile @@ -0,0 +1,26 @@ +FROM debian:stable-slim +LABEL maintainer="info@valentineus.link" + +ENV METEOR_ALLOW_SUPERUSER="true" +ENV RELEASE="1.5" +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/1.6/Dockerfile b/build/1.6/Dockerfile new file mode 100644 index 0000000..4ada03a --- /dev/null +++ b/build/1.6/Dockerfile @@ -0,0 +1,26 @@ +FROM debian:stable-slim +LABEL maintainer="info@valentineus.link" + +ENV METEOR_ALLOW_SUPERUSER="true" +ENV RELEASE="1.6" +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/default/1.4/Dockerfile b/default/1.4/Dockerfile new file mode 100644 index 0000000..a2700f2 --- /dev/null +++ b/default/1.4/Dockerfile @@ -0,0 +1,26 @@ +FROM debian:stable-slim +LABEL maintainer="info@valentineus.link" + +ENV METEOR_ALLOW_SUPERUSER="true" +ENV RELEASE="1.4" +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/1.5/Dockerfile b/default/1.5/Dockerfile new file mode 100644 index 0000000..f8ec1f4 --- /dev/null +++ b/default/1.5/Dockerfile @@ -0,0 +1,26 @@ +FROM debian:stable-slim +LABEL maintainer="info@valentineus.link" + +ENV METEOR_ALLOW_SUPERUSER="true" +ENV RELEASE="1.5" +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/1.6/Dockerfile b/default/1.6/Dockerfile new file mode 100644 index 0000000..5866773 --- /dev/null +++ b/default/1.6/Dockerfile @@ -0,0 +1,26 @@ +FROM debian:stable-slim +LABEL maintainer="info@valentineus.link" + +ENV METEOR_ALLOW_SUPERUSER="true" +ENV RELEASE="1.6" +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 -- cgit v1.2.3