Help with zip in dockerfile

Hi All,

I have been trying to solve this for some time. I have a docker file that works by installing a zip from a github URL
I want to instead use a local zip file to install it.

The zip file (gunthy-linux) is in the same directory as the dockerfile itself.

Here’s the dockerfile that works fine for me: https://github.com/magicdude4eva/docker-gunbot/blob/main/Dockerfile

Specifically I’m changing this:

Install Gunbot

WORKDIR /tmp
RUN curl -Lo /tmp/lin.zip ${INSTALL_URL}
RUN unzip -q lin.zip \

to this:

Install Gunbot

WORKDIR /tmp
ADD gunthy-linux.zip /tmp/lin.zip
RUN unzip -q lin.zip \

However, I am getting mv: cannot stat ‘gunthy_*’: No such file or directory

I’m sure i’m missing something obvious.

I want to install this sep zip as the company release bug fixes in telegram prior to releasing on github.

I’d really appreciate any advice, thank you

The file is gunthy-linux.zip and not gunthy_linux.zip. Rename the file to gunthy_linux.zip or change the reference in the Dockerfile

update:

Sorry I realized gunthy_* should be in the zip file. I guess it is not in the file or not in the root of the zip.