diff options
author | Ian Moore <imoore76@yahoo.com> | 2015-12-02 08:45:23 -0500 |
---|---|---|
committer | Ian Moore <imoore76@yahoo.com> | 2015-12-02 08:45:23 -0500 |
commit | 94e17f57f3f16628f140cdd5fd5ca00806ca208f (patch) | |
tree | c20c59230818ed3400787e4ead6181b403f77f5c /Dockerfile | |
parent | 242d71fc6756d83f7b0bfe4669ad25536c416975 (diff) | |
download | phpvirtualbox-94e17f57f3f16628f140cdd5fd5ca00806ca208f.zip phpvirtualbox-94e17f57f3f16628f140cdd5fd5ca00806ca208f.tar.gz phpvirtualbox-94e17f57f3f16628f140cdd5fd5ca00806ca208f.tar.bz2 |
Docker related files
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 7 |
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 |