diff --git a/CHANGELOG.md b/CHANGELOG.md
index 352bf26f8ea3a4dbbc28c876f2697542e57d0bf4..ede670cca7c8e743bec48d1582ae5db5d0c59be6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,11 @@ All notable changes to this project will be documented in this file.
 
 ### Bugs fixed
 
+### Bugs
+
+    Several heap errors, especially related to the undo/redo framework
+    Autosave not working properly
+    
 ## v0.8.0 [05.03.2016]
 
 ### Added
@@ -29,4 +34,4 @@ All notable changes to this project will be documented in this file.
 	- Length of line is displayed
 	- Show origin
 	- ...
-- Room and door declarations
+- Room and door declarations
\ No newline at end of file
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..f03a93d2de677c170f0e2c17e11ecda311c9a8d1
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,46 @@
+#-------------------------------------------------------------
+# - build:
+#   docker build -t jupedsim/jpseditor .
+# - run:
+#   1. socat TCP-LISTEN:6000,reuseaddr,fork UNIX-CLIENT:\"$DISPLAY\"                                                                  
+#   2. docker -it -e DISPLAY=<your ip address>  jupedsim/jpseditor
+#-------------------------------------------------------------
+
+FROM ubuntu:14.04
+ 
+MAINTAINER Erik Andresen <e.andresen@uni-wuppertal.de>
+
+# install required packages
+RUN apt-get update && apt-get install -y \
+    build-essential \
+    cmake \
+    g++ \
+    git \
+    lcov \
+    doxygen \
+    qt5-default qttools5-dev-tools \ 
+    # python \
+    # python-dev \
+    # python-pip \
+    && apt-get clean
+
+# set environment
+ENV HOME /home/jupedsim
+
+# add user
+RUN groupadd -r -g 1000 jupedsim && useradd -r -g jupedsim -u 1000 -m jupedsim
+USER jupedsim
+
+# install jpscore
+RUN mkdir -p /home/jupedsim/workspace
+RUN cd /home/jupedsim/workspace \
+    && git clone --depth=5 https://cst.version.fz-juelich.de/jupedsim/jpseditor.git \
+    && cd jpseditor \
+    && mkdir -p build \
+    && cd build \
+    && cmake -D DESIRED_QT_VERSION=5 ..\
+    && make
+
+
+# by default /bin/bash is executed
+CMD $HOME/workspace/jpseditor/bin/JPSeditor
\ No newline at end of file