Commit c34386e4b08441b138d85d5df30a9dd8b531e9f9

Authored by George Vlahavas
1 parent 58cb3cd7d0

Do not run artisan within the container

You need an actual DB running to do this. Oops.

Showing 1 changed file with 0 additions and 3 deletions

api/Dockerfile View file @ c34386e
... ... @@ -45,9 +45,6 @@
45 45 # Use composer to install dependencies
46 46 RUN composer install
47 47  
48   -# Create and populate the databases
49   -RUN php artisan migrate:fresh --seed --force
50   -
51 48 # Change current user to www
52 49 USER www
53 50