Begin Monkeyloader Work

This commit is contained in:
Merith-TK 2025-01-07 19:06:18 +00:00
parent 1fec55efc0
commit d79288f11d
8 changed files with 187 additions and 46 deletions

View file

@ -1,4 +1,10 @@
FROM mcr.microsoft.com/dotnet/runtime
FROM mcr.microsoft.com/dotnet/sdk AS SDK
COPY ./defaults/loader /loader
WORKDIR /loader
RUN dotnet build -o /app -c Release
FROM mcr.microsoft.com/dotnet/runtime AS runtime
ENV \
LANG="en_US.UTF-8" \
@ -21,6 +27,7 @@ RUN DEBIAN_FRONTEND=noninteractive \
locales \
mono-complete \
opus-tools \
unzip \
sudo
# make data directories
@ -38,6 +45,7 @@ ENV STOP_LAUNCH=false
COPY defaults /mnt/defaults
COPY scripts /scripts
COPY --from=SDK /app/ /app/
RUN chmod +x /scripts/*
ENTRYPOINT ["/scripts/00_setup.sh"]