Skip to content

Commit cbf4f57

Browse files
committed
feat: LOAPI-6 Set libreoffice to 7.6
1 parent f45bc90 commit cbf4f57

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ See the example at [libreoffice-lambda-base-image](https://github.com/shelfio/li
2424
Example:
2525

2626
```Dockerfile
27-
FROM public.ecr.aws/shelf/lambda-libreoffice-base:7.4-node16-x86_64
27+
FROM public.ecr.aws/shelf/lambda-libreoffice-base:7.6-node18-x86_64
2828

2929
COPY ./ ${LAMBDA_TASK_ROOT}/
3030

src/convert.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const DEFAULT_ARGS = [
1414
'--nologo',
1515
'--norestore',
1616
];
17-
const LO_BINARY_PATH = 'libreoffice7.4';
17+
const LO_BINARY_PATH = 'libreoffice7.6';
1818

1919
export async function convertTo(filename: string, format: string): Promise<string> {
2020
await cleanupTempFiles();

test/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM public.ecr.aws/shelf/lambda-libreoffice-base:7.4-node16-x86_64
1+
FROM public.ecr.aws/shelf/lambda-libreoffice-base:7.6-node18-x86_64
22

33
COPY . ${LAMBDA_TASK_ROOT}/
44
CMD [ "test.handler" ]

0 commit comments

Comments
 (0)