Base image: debian:10.6-slim
Full name: ludeeus/container:netdaemon-dotnet5
View this on Docker Hub
| Variable | Value |
|---|---|
CONTAINER_TYPE |
netdaemon-dotnet5 |
DEBIAN_FRONTEND |
noninteractive |
DEVCONTAINER |
True |
DOTNET_CLI_TELEMETRY_OPTOUT |
1 |
DOTNET_RUNNING_IN_CONTAINER |
true |
DOTNET_USE_POLLING_FILE_WATCHER |
true |
devcontainerdotnetcore5-runtime (5.0.0)dotnetcore5-sdk (5.0.100)bashca-certificatesgitlibc6libgcc1libgssapi-krb5-2libicu63libssl1.1libstdc++6makenanoopenssh-clientprocpswgetzlib1g
FROM debian:10.6-slim
ENV DEBIAN_FRONTEND=noninteractive
ENV DOTNET_RUNNING_IN_CONTAINER=true
ENV DOTNET_USE_POLLING_FILE_WATCHER=true
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
ENV CONTAINER_TYPE=netdaemon-dotnet5
ENV DEVCONTAINER=True
COPY rootfs/dotnet-base /
COPY rootfs/dotnet5-base /
COPY rootfs/common /
RUN \
apt update \
&& apt install -y --no-install-recommends --allow-downgrades \
ca-certificates \
nano \
bash \
wget \
git \
openssh-client \
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu63 \
libssl1.1 \
libstdc++6 \
zlib1g \
procps \
make \
&& chmod +x /usr/bin/container \
&& bash /build_scripts/install \
&& rm -R /build_scripts \
&& mkdir -p /dotnet \
&& tar zxf /tmp/runtime.tar.gz -C /dotnet \
&& tar zxf /tmp/sdk.tar.gz -C /dotnet \
&& ln -s /dotnet/dotnet /bin/dotnet \
&& dotnet --info \
&& rm -fr /var/lib/apt/lists/* \
&& rm -fr /tmp/* /var/{cache,log}/*
This is a generated version of the context used while building the container, some of the labels will not be correct since they use information in the action that publishes the container