TODOList-Laravel / Dockerfile
Anuj-Panthri's picture
added steps to run
86f0c03
raw
history blame
125 Bytes
FROM bitnami/laravel;
EXPOSE 8000
COPY ./ /app
WORKDIR /app
RUN touch database\database.sqlite;
RUN php artisan migrate;