From e140e13b5f93f4111d56ce816132fe946f287e79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor?= Date: Thu, 5 Apr 2018 11:31:56 +0200 Subject: [PATCH] Add basic docker support --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..abfb6d51 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM php:apache + +RUN apt-get update +RUN apt-get install -y zip unzip git +RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer +WORKDIR /var/www/html +RUN composer create-project athlon1600/php-proxy-app:dev-master /var/www/html +RUN service apache2 start