From 847a610d4bcb35b5775b39e9b6a5397ffda1a4b7 Mon Sep 17 00:00:00 2001 From: ErickSkrauch Date: Thu, 5 May 2016 11:15:53 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A3=D0=B6=D0=B5=20=D0=BF=D0=BE=D1=87=D1=82?= =?UTF-8?q?=D0=B8=20=D0=B2=D1=81=D1=91=20=D0=BD=D0=B0=D1=81=D1=82=D1=80?= =?UTF-8?q?=D0=BE=D0=B5=D0=BD=D0=BE=20(=D0=BD=D0=BE=20=D1=81=20node-dev-se?= =?UTF-8?q?rver=20=D0=B5=D1=81=D1=82=D1=8C=20=D1=82=D1=80=D0=B0=D0=B1?= =?UTF-8?q?=D0=BB=D1=8B)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .dockerignore | 2 ++ Dockerfile | 14 ++++++++++++++ webpack.config.js | 8 ++++++++ 3 files changed, 24 insertions(+) create mode 100644 .dockerignore create mode 100644 Dockerfile diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..ebcd903 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,2 @@ +dist +#node_modules diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7fdc180 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,14 @@ +FROM node:5.11 + +RUN mkdir -p /usr/src/app +WORKDIR /usr/src/app + +# Install app dependencies +COPY package.json /usr/src/app/ +RUN npm i + +# Bundle app source +COPY . /usr/src/app + +EXPOSE 8080 +CMD ["npm", "start"] diff --git a/webpack.config.js b/webpack.config.js index 39699dc..c99eb7a 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -30,6 +30,8 @@ var isTest = process.argv.some(function(arg) { return arg.indexOf('karma') !== -1; }); +var isDockerized = !!process.env.DOCKERIZED; + process.env.NODE_ENV = isProduction ? 'production' : 'development'; if (isTest) { process.env.NODE_ENV = 'test'; @@ -205,6 +207,12 @@ var webpackConfig = { ] }; +if (isDockerized) { + webpackConfig.watchOptions = { + poll: 2000 + }; + webpackConfig.devServer.host = '0.0.0.0'; +} if (isProduction) { webpackConfig.module.loaders.forEach((loader) => {