a simple wishlist web app
| # debian.sh --arch 'amd64' out/ 'bookworm' '@1768176000' |
| 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.12 |
| 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.12 |
| COPY /dotnet /usr/share/dotnet # buildkit |
| USER 1654 |
| WORKDIR /app |
| EXPOSE [8080/tcp] |
| EXPOSE [8081/tcp] |
| WORKDIR /app |
| COPY /app/publish . # buildkit |
| ENTRYPOINT ["dotnet" "Wishlist.dll"] |
| Key |
Value |
| org.opencontainers.image.created |
2026-01-14T17:38:57.191Z |
| org.opencontainers.image.description |
a simple wishlist web app |
| org.opencontainers.image.licenses |
|
| org.opencontainers.image.revision |
0a80ad0277051951751be2cc93bca8152464f0f9 |
| org.opencontainers.image.source |
https://git.markuso.ooo/ConfuzzedCat/wishlist |
| org.opencontainers.image.title |
wishlist |
| org.opencontainers.image.url |
https://git.markuso.ooo/ConfuzzedCat/wishlist |
| org.opencontainers.image.version |
main |