Block a user
satou (0.42.0)
Published 2025-10-26 11:59:36 +01:00 by marcinb
Installation
docker pull gitea.cs.pollub.pl/marcinb/satou:0.42.0sha256:2d8452dbfeae824356ae6570587f4fd3342395fb8ffe3492ddd8d289c35ceb40Image Layers
| # debian.sh --arch 'amd64' out/ 'bookworm' '@1760918400' |
| ENV APP_UID=1654 ASPNETCORE_HTTP_PORTS=8080 DOTNET_RUNNING_IN_CONTAINER=true |
| RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates libc6 libgcc-s1 libicu72 libssl3 libstdc++6 tzdata && rm -rf /var/lib/apt/lists/* # buildkit |
| RUN /bin/sh -c groupadd --gid=$APP_UID app && useradd --no-log-init --uid=$APP_UID --gid=$APP_UID --create-home app # buildkit |
| ENV DOTNET_VERSION=9.0.10 |
| COPY /dotnet /usr/share/dotnet # buildkit |
| RUN /bin/sh -c ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet # buildkit |
| ENV ASPNET_VERSION=9.0.10 |
| COPY /dotnet /usr/share/dotnet # buildkit |
| RUN /bin/sh -c apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* # buildkit |
| WORKDIR /app |
| WORKDIR /app |
| COPY /app/publish . # buildkit |
| ENTRYPOINT ["dotnet" "Satou.dll"] |
| HEALTHCHECK &{["CMD-SHELL" "curl --fail http://localhost:8080/healthz || exit"] "0s" "0s" "0s" "0s" '\x00'} |
| EXPOSE map[8080/tcp:{}] |