diff options
author | Valentin Popov <info@valentineus.link> | 2018-08-15 17:28:35 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2018-08-15 17:39:36 +0300 |
commit | 8f92f77d5afda97e2f4c7b0a244143082f380a5c (patch) | |
tree | 56be31ee8b5a6099119dd056cfbb5c6a0d423c8b /default/1.5/Dockerfile | |
parent | 9bf889fa159784967814890435c416518fa0c3a7 (diff) | |
download | docker-meteor-8f92f77d5afda97e2f4c7b0a244143082f380a5c.tar.xz docker-meteor-8f92f77d5afda97e2f4c7b0a244143082f380a5c.zip |
Reconfiguration of the build algorithm
Diffstat (limited to 'default/1.5/Dockerfile')
-rw-r--r-- | default/1.5/Dockerfile | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/default/1.5/Dockerfile b/default/1.5/Dockerfile deleted file mode 100644 index a4e61bd..0000000 --- a/default/1.5/Dockerfile +++ /dev/null @@ -1,26 +0,0 @@ -FROM ubuntu:rolling -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 |