FROM ubuntu:latest
MAINTAINER rpus

COPY ./ClientApp/dist/ /app
WORKDIR /app

RUN apt-get update
RUN apt-get install -y nodejs
RUN apt-get install -y npm
RUN npm install -g http-server

ENTRYPOINT ["http-server"]