Skip to content

Instantly share code, notes, and snippets.

View wufe's full-sized avatar

Simone Bembi wufe

View GitHub Profile
@wufe
wufe / Dockerfile
Last active February 25, 2024 22:01
Python runtime installation Dockerfile
# 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
@wufe
wufe / webpack.config.js
Created April 17, 2016 09:45
Webpack configuration - Babel ( react - es2015 - stage0 )
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",