Skip to content

Install fails with newer deadline versions #1

Description

@finnschi

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"]

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions