Skip to content

Commit

Permalink
docker: move to Microsoft supplied dotnet image
Browse files Browse the repository at this point in the history
  • Loading branch information
bredo228 committed Nov 19, 2024
1 parent dfe1c75 commit dcd24f9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
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
Expand All @@ -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

Expand Down

0 comments on commit dcd24f9

Please sign in to comment.