We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fe1b4d commit c4d2a32Copy full SHA for c4d2a32
.docker/Dockerfile
@@ -0,0 +1,10 @@
1
+FROM php:7.2-apache
2
+
3
+RUN apt-get update \
4
+ && apt-get install -y libxml2-dev git zip zlib1g \
5
+ && docker-php-ext-install soap
6
7
+COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
8
+COPY . /var/www/html
9
10
+WORKDIR /var/www/html
docker-compose.yml
+version: '3.4'
+services:
+ php:
+ build:
+ context: .
+ dockerfile: .docker/Dockerfile
+ volumes:
+ - .:/var/www/html:rw
+ container_name: package_base
0 commit comments