3.1.102-debian-10-r1 release
This commit is contained in:
parent
b244cab1a2
commit
ec352b1790
|
|
@ -3,23 +3,26 @@ LABEL maintainer "Bitnami <containers@bitnami.com>"
|
|||
|
||||
COPY prebuildfs /
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages build-essential ca-certificates curl git libc6 libcap2-bin libcom-err2 libcurl4 libffi6 libgcc1 libgcrypt20 libgmp10 libgnutls30 libgpg-error0 libgssapi-krb5-2 libhogweed4 libicu-dev libidn2-0 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libldap-2.4-2 liblttng-ust-dev libnettle6 libnghttp2-14 libp11-kit0 libpsl5 librtmp1 libsasl2-2 libssh2-1 libssl1.1 libstdc++6 libtasn1-6 libunistring2 pkg-config procps sudo unzip wget zlib1g
|
||||
RUN install_packages build-essential ca-certificates curl git libc6 libcap2-bin libcom-err2 libcurl4 libffi6 libgcc1 libgcrypt20 libgmp10 libgnutls30 libgpg-error0 libgssapi-krb5-2 libhogweed4 libicu-dev libidn2-0 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libldap-2.4-2 liblttng-ust-dev libnettle6 libnghttp2-14 libp11-kit0 libpsl5 librtmp1 libsasl2-2 libsqlite3-dev libssh2-1 libssl-dev libssl1.1 libstdc++6 libtasn1-6 libunistring2 pkg-config procps sudo unzip wget zlib1g
|
||||
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/dotnet-sdk-3.1.102-0-linux-amd64-debian-10.tar.gz && \
|
||||
echo "d491218a8d4cd0a9b821e6867a83603df9a87ec4711c776a744a8a8a1dcf9895 /tmp/bitnami/pkg/cache/dotnet-sdk-3.1.102-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf /tmp/bitnami/pkg/cache/dotnet-sdk-3.1.102-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
|
||||
rm -rf /tmp/bitnami/pkg/cache/dotnet-sdk-3.1.102-0-linux-amd64-debian-10.tar.gz
|
||||
RUN apt-get update && apt-get upgrade -y && \
|
||||
rm -r /var/lib/apt/lists /var/cache/apt/archives
|
||||
RUN sed -i 's/^PASS_MAX_DAYS.*/PASS_MAX_DAYS 90/' /etc/login.defs && \
|
||||
sed -i 's/^PASS_MIN_DAYS.*/PASS_MIN_DAYS 0/' /etc/login.defs && \
|
||||
sed -i 's/sha512/sha512 minlen=8/' /etc/pam.d/common-password
|
||||
|
||||
COPY rootfs /
|
||||
RUN /opt/bitnami/scripts/dotnet-sdk/postunpack.sh
|
||||
ENV BITNAMI_APP_NAME="dotnet-sdk" \
|
||||
BITNAMI_IMAGE_VERSION="3.1.102-debian-10-r0" \
|
||||
BITNAMI_IMAGE_VERSION="3.1.102-debian-10-r1" \
|
||||
DOTNET_CLI_HOME="/app" \
|
||||
DOTNET_ROOT="/opt/bitnami/dotnet/bin" \
|
||||
HOME="/app" \
|
||||
PATH="/opt/bitnami/dotnet-sdk/bin:$PATH"
|
||||
|
||||
WORKDIR /app
|
||||
USER 1001
|
||||
ENTRYPOINT [ "/opt/bitnami/scripts/dotnet-sdk/entrypoint.sh" ]
|
||||
CMD [ "/bin/bash" ]
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
# What is Dotnet?
|
||||
# What is ASP.NET SDK?
|
||||
|
||||
> CHANGEME: Add a description
|
||||
> ASP.NET is an open-source framework for web application development created by Microsoft.
|
||||
|
||||
CHANGEME: Add a link, e.g. [https://github.com/username/dotnet](https://github.com/username/dotnet)
|
||||
[https://dotnet.microsoft.com/apps/aspnet](https://dotnet.microsoft.com/apps/aspnet)
|
||||
|
||||
# TL;DR;
|
||||
|
||||
|
|
@ -47,7 +47,7 @@ $ kubectl apply -f test.yaml
|
|||
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/containers/how-to/understand-rolling-tags-containers/).
|
||||
|
||||
|
||||
* [`3.1-debian-10`, `3.1.102-debian-10-r0`, `3.1`, `3.1.102`, `latest` (3.1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-dotnet/blob/3.1.102-debian-10-r0/3.1/debian-10/Dockerfile)
|
||||
* [`3.1-debian-10`, `3.1.102-debian-10-r1`, `3.1`, `3.1.102`, `latest` (3.1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-dotnet/blob/3.1.102-debian-10-r1/3.1/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/dotnet GitHub repo](https://github.com/bitnami/bitnami-docker-dotnet).
|
||||
|
||||
|
|
@ -119,10 +119,6 @@ $ docker run --name dotnet-node1 --network dotnet-network bitnami/dotnet:latest
|
|||
|
||||
We can launch another containers using the same flag (`--network NETWORK`) in the `docker run` command. If you also set a name to your container, you will be able to use it as hostname in your network.
|
||||
|
||||
# Configuration
|
||||
|
||||
CHANGEME: Add configuration section
|
||||
|
||||
# Logging
|
||||
|
||||
The Bitnami Dotnet Docker image sends the container logs to `stdout`. To view the logs:
|
||||
|
|
|
|||
Loading…
Reference in New Issue