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

Install fails with newer deadline versions #1

Open
finnschi opened this issue Jun 7, 2024 · 0 comments
Open

Install fails with newer deadline versions #1

finnschi opened this issue Jun 7, 2024 · 0 comments

Comments

@finnschi
Copy link

finnschi commented Jun 7, 2024

Install of the client fails, i fixed it by changing the client/Dockerfile

  1. make sure libssl-dev is installed in the container, this is allready in the repo dockerfile but not in the client

  2. for some reason its trying to chmod /opt/Thinkbox/Deadline10/Uninstall*.desktop

i dont care about the uninstaller so i just created a dummy file so it doesnt error.

FROM ubuntu:focal

RUN apt-get update -y && apt-get install libssl-dev -y
COPY DeadlineClient-*-linux-x64-installer.run DeadlineClient-installer.run
RUN mkdir -p /opt/Thinkbox/Deadline10
RUN touch /opt/Thinkbox/Deadline10/Uninstall*.desktop
RUN chmod u+x DeadlineClient-installer.run && \
        ./DeadlineClient-installer.run \
        --binariesonly true \
        --mode unattended

FROM ubuntu:focal
# RUN apt-get update -y && apt-get install curl -y
COPY --from=0 /opt/Thinkbox /opt/Thinkbox
COPY run.sh .

CMD ["./run.sh","deadline.exe"]

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