This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This image represents a reminder from the pluralsight's course "Countinuous delivery using docker and ansible" | |
# Requires entrypoint.sh available here https://gist.github.com/Wufe/661c026a3efb451222239f9e42e9a802 | |
FROM ubuntu:trusty | |
MAINTAINER Simone Bembi <simone.bembi@gmail.com> | |
# Prevent dpkg errors | |
ENV TERM=xterm-256color | |
# Install Python runtime |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var webpack = require( 'webpack' ); | |
var debug = true; | |
module.exports = { | |
entry: { | |
signup: "./src/signup/main.js" | |
}, | |
devtool: debug ? "inline-sourcemap" : null, | |
output: { | |
path: __dirname + "/../public/assets/javascript", |
NewerOlder