view docker/Dockerfile.spa @ 539:924490b3395b

refac: Loginmask reworked The login is now more stable. The user gets better visual feedback for his actions.
author Thomas Junk <thomas.junk@intevation.de>
date Thu, 30 Aug 2018 12:39:09 +0200
parents 11d527b3321b
children 6d7c0dbf9d21
line wrap: on
line source

FROM ubuntu:bionic
LABEL authors="tom@intevation.de"

RUN sed -i 's/$/ universe/' /etc/apt/sources.list

RUN apt-get update &&\
    apt-get -y install --no-install-recommends curl nodejs

# Install yarn
RUN curl https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - &&\
    echo 'deb https://dl.yarnpkg.com/debian/ stable main' >> \
         /etc/apt/sources.list &&\
    apt-get update &&\
    apt-get -y install yarn

COPY ./client /opt/gemma_spa

WORKDIR /opt/gemma_spa

RUN yarn install

EXPOSE 8080

CMD ["yarn", "serve"]