aboutsummaryrefslogtreecommitdiff
path: root/build/1.5
diff options
context:
space:
mode:
Diffstat (limited to 'build/1.5')
-rw-r--r--build/1.5/Dockerfile26
1 files changed, 0 insertions, 26 deletions
diff --git a/build/1.5/Dockerfile b/build/1.5/Dockerfile
deleted file mode 100644
index c699f2b..0000000
--- a/build/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 \
- 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