summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorIan Moore <imoore76@yahoo.com>2015-12-02 08:45:23 -0500
committerIan Moore <imoore76@yahoo.com>2015-12-02 08:45:23 -0500
commit94e17f57f3f16628f140cdd5fd5ca00806ca208f (patch)
treec20c59230818ed3400787e4ead6181b403f77f5c /Dockerfile
parent242d71fc6756d83f7b0bfe4669ad25536c416975 (diff)
downloadphpvirtualbox-94e17f57f3f16628f140cdd5fd5ca00806ca208f.zip
phpvirtualbox-94e17f57f3f16628f140cdd5fd5ca00806ca208f.tar.gz
phpvirtualbox-94e17f57f3f16628f140cdd5fd5ca00806ca208f.tar.bz2
Docker related files
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..d5c62e7
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,7 @@
+FROM php:5.6-apache
+RUN apt-get update && \
+ apt-get install -y \
+ libxml2 \
+ libxml2-dev && \
+ docker-php-ext-install soap
+COPY . /var/www/html \ No newline at end of file