flowtodo/Dockerfile
Javier Feliz 63de1cc642
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
Fix dockerfile
2025-07-16 19:33:47 -04:00

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