Dockerfile for AMR client!

amd64:

FROM mcr.microsoft.com/dotnet/core/runtime:3.1-focal
RUN curl -o AskMrRobotClient.zip https://static.askmrrobot.com/wowsite/client/AskMrRobotClient-universal-1241.zip
RUN apt update && apt install unzip
RUN unzip AskMrRobotClient.zip
WORKDIR AskMrRobotClient
ENTRYPOINT dotnet simclient.dll
COPY settings.json .

arm64:

FROM mcr.microsoft.com/dotnet/core/runtime:3.1-focal-arm64v8
RUN curl -o AskMrRobotClient.zip https://static.askmrrobot.com/wowsite/client/AskMrRobotClient-universal-1241.zip
RUN apt update && apt install unzip
RUN unzip AskMrRobotClient.zip
WORKDIR AskMrRobotClient
ENTRYPOINT dotnet simclient.dll
COPY settings.json .

Then you can run docker run -d [image-id] and it’ll keep it running in the background!

Ah, I see Docker for the SIM client - Unraid also exists…