You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
731 B
27 lines
731 B
FROM ubuntu:latest |
|
|
|
ARG BOT_VERSION="2.9-fix2" |
|
|
|
RUN apt-get update && apt-get install -y wget |
|
|
|
# Add dotnet runtime to repository |
|
RUN wget https://packages.microsoft.com/config/ubuntu/21.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb |
|
RUN dpkg -i packages-microsoft-prod.deb |
|
RUN rm packages-microsoft-prod.deb |
|
|
|
RUN apt-get update && apt-get install -y \ |
|
apt-transport-https \ |
|
dotnet-runtime-6.0 \ |
|
unzip |
|
|
|
RUN wget https://github.com/PCJones/Ultimate-Splinterlands-Bot-V2/releases/download/v${BOT_VERSION}/linux-x64.zip |
|
|
|
RUN unzip linux-x64.zip || true |
|
|
|
RUN rm -f linux-x64.zip |
|
|
|
WORKDIR ./linux-x64 |
|
|
|
RUN mv Ultimate\ Splinterlands\ Bot\ V2 ultimatesplinterlandsbotv2 |
|
|
|
RUN chmod +x ultimatesplinterlandsbotv2 |