9 lines
241 B
Docker
9 lines
241 B
Docker
FROM gitgud.foo/thegrind/laravel-base:latest
|
|
|
|
# Get the app in there
|
|
WORKDIR /app
|
|
COPY . .
|
|
|
|
# Install deps and built front end assets
|
|
RUN composer install --no-interaction --prefer-dist --optimize-autoloader
|
|
RUN npm install && npm run build |