From e438d1d07f8632f6d3ae043867a32b592d7e4f1b Mon Sep 17 00:00:00 2001 From: Riddick Date: Tue, 12 Nov 2024 13:41:37 +0100 Subject: [PATCH] Create Dockerfile (#6) A Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image. --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ff19760 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM php:8.3-apache + +COPY ./phar /var/www/html/vendor/firehub/core/phar + +WORKDIR /var/www/html \ No newline at end of file