generated from oci/template
Begin Monkeyloader Work
This commit is contained in:
parent
1fec55efc0
commit
d79288f11d
8 changed files with 187 additions and 46 deletions
10
Dockerfile
10
Dockerfile
|
@ -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"]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue