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

16 lines
170 B
Docker
Raw Normal View History

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