aboutsummaryrefslogtreecommitdiffstats
path: root/moonv4/moon_gui/Dockerfile
blob: ef80966848b52eea3db530dfc9ca9999198c4ea9 (plain)
1
2
3
4
5
6
7
8
9
10
11
FROM ubuntu:latest

RUN apt update && apt install nodejs nodejs-legacy npm -y
RUN npm install --global gulp-cli

ADD . /root
WORKDIR /root/
RUN npm install
RUN gulp delivery

CMD ["gulp", "webServerDelivery"]