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/latest | |
parent | 9bf889fa159784967814890435c416518fa0c3a7 (diff) | |
download | docker-meteor-8f92f77d5afda97e2f4c7b0a244143082f380a5c.tar.xz docker-meteor-8f92f77d5afda97e2f4c7b0a244143082f380a5c.zip |
Reconfiguration of the build algorithm
Diffstat (limited to 'default/latest')
-rw-r--r-- | default/latest/Dockerfile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/default/latest/Dockerfile b/default/latest/Dockerfile index d19b1d0..5252e7e 100644 --- a/default/latest/Dockerfile +++ b/default/latest/Dockerfile @@ -2,15 +2,11 @@ FROM ubuntu:rolling LABEL maintainer="info@valentineus.link" ENV METEOR_ALLOW_SUPERUSER="true" -WORKDIR "/workspace" RUN set -ex \ && apt-get update \ && apt-get --no-install-recommends --no-install-suggests --yes install \ - ca-certificates \ - curl \ - git \ - openssl \ + ca-certificates curl git openssl \ && curl https://install.meteor.com | sh \ && apt-get --purge --yes remove curl \ && apt-get --purge --yes autoremove \ @@ -22,4 +18,5 @@ RUN set -ex \ && find /var/tmp -type f -exec rm {} \; EXPOSE 3000 +WORKDIR "/workspace" CMD [ "/usr/local/bin/meteor", "run" ]
\ No newline at end of file |