diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..ab10088b828b11c0ca2a793e840ebff525602ec4
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,13 @@
+FROM php:alpine
+
+VOLUME ./:./app
+
+WORKDIR app
+
+COPY . .
+
+ENV COMPOSER_ALLOW_SUPERUSER=1
+RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
+RUN composer install
+
+CMD ["php"]
\ No newline at end of file