-
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.
docker: move to Microsoft supplied dotnet image
- Loading branch information
Showing
1 changed file
with
3 additions
and
2 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,4 +1,4 @@ | ||
FROM ghcr.io/voxelbonecloud/debian-dotnet:main | ||
FROM mcr.microsoft.com/dotnet/runtime:8.0-bookworm-slim | ||
|
||
LABEL author="Voxel Bone Cloud" maintainer="[email protected]" | ||
LABEL org.opencontainers.image.source=https://github.com/voxelbonecloud/headless-docker | ||
|
@@ -9,7 +9,8 @@ LABEL org.opencontainers.image.authors="Voxel Bone Cloud" | |
RUN apt update \ | ||
&& dpkg --add-architecture i386 \ | ||
&& apt install curl git lib32gcc-s1 libfreetype6 -y \ | ||
&& useradd -m -d /home/container -s /bin/bash container | ||
&& groupadd -g 1000 container \ | ||
&& useradd -u 1000 -g 1000 -m -d /home/container -s /bin/bash container | ||
|
||
COPY ./scripts /scripts | ||
|
||
|