File size: 351 Bytes
8d22545
86f0c03
 
 
 
 
 
020147e
 
 
 
 
f136a49
97401d2
 
a3bcfe0
7c323f7
a3bcfe0
7c323f7
f7c1b99
 
 
f136a49
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
FROM composer


EXPOSE 8000
COPY ./ /app
WORKDIR /app


RUN cp .env.example .env;
RUN composer install;
RUN php artisan key:generate;
RUN php artisan migrate --force;

RUN ls -lh

# RUN chmod -R 777 public
RUN chmod -R 777 storage
RUN chmod -R 777 database
RUN chmod -R 777 bootstrap/cache

RUN ls -lh

CMD php artisan serve --host 0.0.0.0 --port 8000