Reconfiguration of the build algorithm

This commit is contained in:
2018-08-15 18:28:35 +04:00
parent 9bf889fa15
commit 8f92f77d5a
11 changed files with 26 additions and 199 deletions

View File

@ -2,16 +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 \
build-essential \
ca-certificates \
curl \
git \
openssl \
build-essential ca-certificates curl git openssl \
&& curl https://install.meteor.com | sh \
&& apt-get --purge --yes autoremove \
&& apt-get clean \
@ -22,4 +17,5 @@ RUN set -ex \
&& find /var/tmp -type f -exec rm {} \;
EXPOSE 3000
WORKDIR "/workspace"
CMD [ "/usr/local/bin/meteor", "run" ]