From 6d2f7e14c1f3b9c286ca92f7958c702ef6be85cf Mon Sep 17 00:00:00 2001
From: "Alex. Plokhikh" <a.plohih@iqdev.digital>
Date: Wed, 17 Apr 2024 12:21:57 +0500
Subject: [PATCH] remake Dokerfile

---
 Dockerfile | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/Dockerfile b/Dockerfile
index e69de29..d774d50 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -0,0 +1,14 @@
+FROM php:alpine
+
+VOLUME ./:./app
+
+WORKDIR app
+
+COPY . .
+
+
+ENV COMPOSER_ALLOW_SUPERUSER=1
+RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
+RUN composer install
+
+CMD ["php"]
\ No newline at end of file
-- 
GitLab