1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00

16 lines
164 B
Docker
Raw Normal View History

2018-07-13 11:02:32 +02:00
#
# Client build Dockerfile
# Use node:10 as base image
#
FROM node:10
2018-07-16 17:46:06 +02:00
RUN npm install -g gulp
RUN npm install -g gulp-cli
2018-07-13 11:02:32 +02:00
WORKDIR /client
VOLUME ["/client"]