2021-01-23 17:10:21 +00:00
|
|
|
# Pull base image.
|
2024-03-30 15:12:11 +00:00
|
|
|
FROM jlesage/baseimage-gui:debian-11
|
2021-01-23 17:10:21 +00:00
|
|
|
|
|
|
|
# Set the name of the application.
|
|
|
|
ENV APP_NAME="StardewValley"
|
|
|
|
|
2024-03-30 15:12:11 +00:00
|
|
|
RUN apt-get update && apt-get install -y wget unzip tar strace mono-complete xterm gettext-base jq netcat procps && apt-get clean
|
2020-04-06 23:36:11 +00:00
|
|
|
|
2024-04-27 05:59:55 +00:00
|
|
|
# TODO: Copy local user game files
|
2021-01-23 17:10:21 +00:00
|
|
|
|
2024-03-24 18:11:06 +00:00
|
|
|
RUN wget -qO dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/d4b71fac-a2fd-4516-ac58-100fb09d796a/e79d6c2a8040b59bf49c0d167ae70a7b/dotnet-sdk-5.0.408-linux-arm64.tar.gz &&\
|
|
|
|
tar -zxf dotnet.tar.gz -C /usr/share/dotnet &&\
|
|
|
|
rm dotnet.tar.gz &&\
|
2024-03-30 00:35:27 +00:00
|
|
|
ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet
|
2020-04-06 23:36:11 +00:00
|
|
|
|
2024-04-22 22:12:49 +00:00
|
|
|
RUN wget --user-agent="Mozilla" https://mirror.cloudcraft.info/SMAPI_latest.tar.gz -qO /data/nexus.tar.gz && \
|
2024-04-22 21:21:04 +00:00
|
|
|
tar xf /data/nexus.tar.gz -C /data/nexus && \
|
2024-03-30 15:12:11 +00:00
|
|
|
SMAPI_INSTALLER=$(find /data/nexus -name 'SMAPI*.*Installer' -type f -path "*/SMAPI * installer/internal/linux/*" | head -n 1) && \
|
|
|
|
/bin/bash -c "SMAPI_NO_TERMINAL=true SMAPI_USE_CURRENT_SHELL=true echo -e '2\n\n' | \"$SMAPI_INSTALLER\" --install --game-path '/data/Stardew/game'" || :
|
2021-01-23 20:04:33 +00:00
|
|
|
|
|
|
|
# Add Mods & Scripts
|
2024-03-22 14:57:37 +00:00
|
|
|
COPY ["mods/", "/data/Stardew/game/Mods/"]
|
2021-01-23 20:04:33 +00:00
|
|
|
COPY scripts/ /opt/
|
|
|
|
|
2024-03-22 14:57:37 +00:00
|
|
|
RUN chmod +x /data/Stardew/game/StardewValley && \
|
2021-01-23 20:04:33 +00:00
|
|
|
chmod -R 777 /data/Stardew/ && \
|
|
|
|
chown -R 1000:1000 /data/Stardew && \
|
|
|
|
chmod +x /opt/*.sh
|
|
|
|
|
2023-02-21 20:39:14 +00:00
|
|
|
RUN mkdir /etc/services.d/utils && touch /etc/services.d/app/utils.dep
|
|
|
|
COPY run /etc/services.d/utils/run
|
|
|
|
RUN chmod +x /etc/services.d/utils/run
|
|
|
|
|
2021-01-23 17:10:21 +00:00
|
|
|
COPY docker-entrypoint.sh /startapp.sh
|
2024-04-11 02:50:41 +00:00
|
|
|
RUN chmod +x /startapp.sh
|