Zoe Robertson

Results 2 comments of Zoe Robertson

Only other relevant info: I'm running on an Apple Silicon M1, which is why I'm passing in the `--platform` argument.

``` FROM public.ecr.aws/shelf/lambda-libreoffice-base:7.4-node16-x86_64 COPY index.js package.json ${LAMBDA_TASK_ROOT} # dependency not supplied by lambda-libreoffice-base image RUN yum install java-1.8.0-openjdk-devel -y RUN npm install CMD [ "index.handler" ] ``` Adding the `java-1.8.0-openjdk-devel`...