summaryrefslogtreecommitdiff
path: root/Lab04/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Lab04/Dockerfile')
-rw-r--r--Lab04/Dockerfile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Lab04/Dockerfile b/Lab04/Dockerfile
new file mode 100644
index 0000000..01effe1
--- /dev/null
+++ b/Lab04/Dockerfile
@@ -0,0 +1,7 @@
+FROM php:7.4-apache
+
+RUN docker-php-ext-install mysqli && docker-php-ext-enable mysqli
+
+COPY . /var/www/html
+
+WORKDIR /var/www/html