mfoud444 commited on
Commit
f077d32
1 Parent(s): 4b3f96e

Add application file

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile CHANGED
@@ -38,6 +38,13 @@ COPY . /var/www
38
  # RUN if [ -f .env.example ]; then cp .env.example .env; else echo ".env.example file not found"; exit 1; fi
39
 
40
  RUN ls
 
 
 
 
 
 
 
41
  # Install Bagisto dependencies
42
  RUN composer install
43
 
 
38
  # RUN if [ -f .env.example ]; then cp .env.example .env; else echo ".env.example file not found"; exit 1; fi
39
 
40
  RUN ls
41
+
42
+ RUN composer create-project bagisto/bagisto
43
+
44
+ RUN cd bagisto
45
+
46
+ RUN ls
47
+
48
  # Install Bagisto dependencies
49
  RUN composer install
50