Moved Dockerfile

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-06-26 01:01:13 +04:00
parent 696afd84ad
commit 75fb297ac5
4 changed files with 0 additions and 66 deletions

View File

@ -1,21 +0,0 @@
FROM ubuntu:rolling
LABEL maintainer="info@valentineus.link"
ENV METEOR_ALLOW_SUPERUSER="true"
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
WORKDIR "/workspace"
CMD [ "/usr/local/bin/meteor", "run" ]

View File

@ -1,23 +0,0 @@
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 \
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
WORKDIR "/workspace"
CMD [ "/usr/local/bin/meteor", "run" ]

View File

@ -1,22 +0,0 @@
FROM ubuntu:rolling
LABEL maintainer="info@valentineus.link"
ENV METEOR_ALLOW_SUPERUSER="true"
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" ]