Dockerfile

14 lines | 214 B Blame History Raw Download
FROM maven:3.3.9

RUN curl -sL https://deb.nodesource.com/setup_11.x | bash -

RUN apt-get update -qq

RUN apt-get install -qq -y nodejs

ADD . /application
WORKDIR /application

EXPOSE 8080

CMD ["bash", "run.sh"]