aboutsummaryrefslogtreecommitdiff
path: root/default/latest/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'default/latest/Dockerfile')
-rw-r--r--default/latest/Dockerfile22
1 files changed, 0 insertions, 22 deletions
diff --git a/default/latest/Dockerfile b/default/latest/Dockerfile
deleted file mode 100644
index 5252e7e..0000000
--- a/default/latest/Dockerfile
+++ /dev/null
@@ -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" ] \ No newline at end of file