Use smaller libreoffice-writer

This commit is contained in:
Richard Roberson 2025-03-04 23:47:18 -07:00
parent 4a8c194c88
commit 12b46cc8e3
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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