From a2d9f60f66c01ea2bbcf3e465fb21f6759e62251 Mon Sep 17 00:00:00 2001 From: David Kaltschmidt Date: Fri, 29 May 2015 12:18:46 +0200 Subject: [PATCH] added gulpfile to Docker image, added config src --- client/Dockerfile | 2 +- client/gulpfile.js | 3 +++ client/webpack.config.js | 6 +----- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/client/Dockerfile b/client/Dockerfile index 7eeb476ce..deac74957 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -14,6 +14,6 @@ RUN npm install -g gulp ADD package.json /home/weave/ RUN npm install -ADD gulpfile.js /home/weave/ +ADD gulpfile.js webpack.config.js /home/weave/ # For instructions on running this container, consult the toplevel Makefile diff --git a/client/gulpfile.js b/client/gulpfile.js index 3126eec47..2b0a72566 100644 --- a/client/gulpfile.js +++ b/client/gulpfile.js @@ -1,3 +1,6 @@ +/* + * Gulpfile based on https://github.com/kriasoft/react-starter-kit + */ 'use strict'; diff --git a/client/webpack.config.js b/client/webpack.config.js index 6c869f849..08cd37923 100644 --- a/client/webpack.config.js +++ b/client/webpack.config.js @@ -1,9 +1,5 @@ /* - * React.js Starter Kit - * Copyright (c) Konstantin Tarkus (@koistya), KriaSoft LLC - * - * This source code is licensed under the MIT license found in the - * LICENSE.txt file in the root directory of this source tree. + * Webpack config based on https://github.com/kriasoft/react-starter-kit */ 'use strict';