You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile 164B

1234567
  1. FROM php:5.6-apache
  2. RUN apt-get update && \
  3. apt-get install -y \
  4. libxml2 \
  5. libxml2-dev && \
  6. docker-php-ext-install soap
  7. COPY . /var/www/html