Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docker deamon exits on tar -xf lo.tar.gz with (duplicates of file paths not supported): #42

Open
yoransabern opened this issue May 9, 2022 · 0 comments

Comments

@yoransabern
Copy link

yoransabern commented May 9, 2022

I'm trying to create a aws lambda docker image with the lo.tar.gz pre-unzipped inside the image using the following dockerfile:

FROM public.ecr.aws/lambda/python:3.8

RUN yum install -y tar
RUN yum install -y gzip
RUN yum install -y wget

RUN wget https://github.com/vladgolubev/serverless-libreoffice/releases/download/v6.4.0.1/lo.tar.gz
RUN tar -xf lo.tar.gz --verbose

I get the following error from the docker daemon when building this dockerfile:

Error response from daemon: Error processing tar file(duplicates of file paths not supported): 
Failed to deploy '<unknown> Dockerfile: ../Dockerfile': Can't retrieve image ID from build stream

I did not get this error with previous versions of this serverless-libreoffice package, only on the python 3.8 supported version.

Any ideas what goes wrong? I've also tried running this with a different base image and i get the same error.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant