File size: 125 Bytes
86f0c03
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
FROM bitnami/laravel;


EXPOSE 8000
COPY ./ /app
WORKDIR /app

RUN  touch database\database.sqlite;
RUN php artisan migrate;