aboutsummaryrefslogtreecommitdiff
path: root/default/latest/Dockerfile
blob: 5252e7ea79ec0d96d6d2d89875f813b383813e36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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" ]