mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-19 23:12:51 +08:00
11 lines
319 B
Docker
11 lines
319 B
Docker
# syntax=docker/dockerfile:1
|
|
FROM mcr.microsoft.com/dotnet/sdk:6.0-alpine
|
|
|
|
RUN apk add bash icu-libs krb5-libs libgcc libintl libssl1.1 libstdc++ zlib
|
|
|
|
RUN curl -L --output ./dotnet-install.sh https://dot.net/v1/dotnet-install.sh
|
|
|
|
RUN chmod u+x ./dotnet-install.sh
|
|
|
|
RUN ./dotnet-install.sh -c 5.0 -i /usr/share/dotnet
|