Added release 1.7

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2018-08-14 20:28:36 +04:00
parent 235a75ab09
commit 54bad5dd26
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
4 changed files with 102 additions and 0 deletions

26
build/1.7/Dockerfile Normal file
View File

@ -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" ]

25
build/latest/Dockerfile Normal file
View File

@ -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" ]

26
default/1.7/Dockerfile Normal file
View File

@ -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" ]

25
default/latest/Dockerfile Normal file
View File

@ -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" ]