Skip to content

Commit

Permalink
fix: added css from vendor folders
Browse files Browse the repository at this point in the history
  • Loading branch information
CS76 committed May 31, 2024
1 parent 00d4c22 commit a894fad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions resources/ops/docker/app/app.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ RUN composer dump-autoload -o
FROM node:18-alpine AS assets-build
WORKDIR /var/www/html
COPY . /var/www/html/
COPY --from=build-fpm /vendor/filament/filament/resources/css/theme.css /var/www/html/vendor/filament/filament/resources/css/theme.css
COPY --from=build-fpm /vendor/archilex/filament-filter-sets/resources/css/plugin.css /var/www/html/vendor/archilex/filament-filter-sets/resources/css/plugin.css
RUN npm ci
RUN npm run build

Expand Down
2 changes: 2 additions & 0 deletions resources/ops/docker/nginx/nginx.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ RUN composer dump-autoload -o
FROM node:18-alpine AS assets-build
WORKDIR /var/www/html
COPY . /var/www/html/
COPY --from=build-fpm /vendor/filament/filament/resources/css/theme.css /var/www/html/vendor/filament/filament/resources/css/theme.css
COPY --from=build-fpm /vendor/archilex/filament-filter-sets/resources/css/plugin.css /var/www/html/vendor/archilex/filament-filter-sets/resources/css/plugin.css
RUN npm ci
RUN npm run build

Expand Down

0 comments on commit a894fad

Please sign in to comment.