diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index c8a4230..a66aec1 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -16,7 +16,7 @@ jobs: - name: Install Deps (FFmpeg is install through Playwright) run: | sudo apt-get update - sudo apt-get install -y libreoffice + sudo apt-get install -y libreoffice-writer - name: Install dependencies run: npm ci - name: Install Playwright Browsers diff --git a/Dockerfile b/Dockerfile index bfbde5b..67fea1a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM node:current-alpine # Add ffmpeg and libreoffice using Alpine package manager -RUN apk add --no-cache ffmpeg libreoffice +RUN apk add --no-cache ffmpeg libreoffice-writer # Create app directory WORKDIR /app