Initial commit
This commit is contained in:
commit
7f34aa302f
26
build/1.4/Dockerfile
Normal file
26
build/1.4/Dockerfile
Normal file
@ -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" ]
|
26
build/1.5/Dockerfile
Normal file
26
build/1.5/Dockerfile
Normal file
@ -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" ]
|
26
build/1.6/Dockerfile
Normal file
26
build/1.6/Dockerfile
Normal file
@ -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" ]
|
26
default/1.4/Dockerfile
Normal file
26
default/1.4/Dockerfile
Normal file
@ -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" ]
|
26
default/1.5/Dockerfile
Normal file
26
default/1.5/Dockerfile
Normal file
@ -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" ]
|
26
default/1.6/Dockerfile
Normal file
26
default/1.6/Dockerfile
Normal file
@ -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" ]
|
Loading…
x
Reference in New Issue
Block a user