-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from sveken/main
Add git support for config and mod files.
- Loading branch information
Showing
5 changed files
with
94 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
FROM ghcr.io/voxelbonecloud/debian-dotnet:main | ||
|
||
LABEL author="Voxel Bone Cloud" maintainer="[email protected]" | ||
LABEL org.opencontainers.image.source https://github.com/voxelbonecloud/headless-docker | ||
LABEL org.opencontainers.image.description "Docker image based on Debian Bookworm Slim image with dotnet8 for hosting Resonite Headless servers. Supports automatic modding of the Headless." | ||
LABEL org.opencontainers.image.licenses MIT-0 | ||
LABEL org.opencontainers.image.authors "Voxel Bone Cloud" | ||
LABEL org.opencontainers.image.source=https://github.com/voxelbonecloud/headless-docker | ||
LABEL org.opencontainers.image.description="Docker image based on Debian Bookworm Slim image with dotnet8 for hosting Resonite Headless servers. Supports automatic modding of the Headless." | ||
LABEL org.opencontainers.image.licenses=MIT-0 | ||
LABEL org.opencontainers.image.authors="Voxel Bone Cloud" | ||
|
||
RUN apt update \ | ||
&& dpkg --add-architecture i386 \ | ||
&& apt install curl lib32gcc-s1 libfreetype6 -y \ | ||
&& apt install curl git lib32gcc-s1 libfreetype6 -y \ | ||
&& useradd -m -d /home/container -s /bin/bash container | ||
|
||
COPY ./scripts /scripts | ||
|
@@ -18,6 +18,9 @@ RUN chmod +x /scripts/* | |
RUN mkdir /Logs \ | ||
&& chown -R container:container /Logs | ||
|
||
RUN mkdir /Config \ | ||
&& chown -R container:container /Config | ||
|
||
RUN mkdir -p /RML /RML/rml_mods /RML/rml_libs /RML/rml_config \ | ||
&& chown -R container:container /RML | ||
USER container | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters