aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 685085d075226cd82aebb757e04221c039ebce29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM ubuntu
ARG SCHOOL_LEVEL=havo-vwo

RUN apt-get update
RUN apt-get install -y curl build-essential apt-transport-https
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash -
RUN apt-get install -y nodejs yarn

COPY . /var/www
WORKDIR /var/www

RUN npm install
RUN if [ "$SCHOOL_LEVEL" = "mavo" ]; \
      then npm run build-mavo; \
      else npm run build; \
    fi

ENV PORT=80
ENV SCHOOL_LEVEL=$SCHOOL_LEVEL
EXPOSE 80

CMD yarn start