21 строка
812 B
Docker
21 строка
812 B
Docker
|
|
FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine AS build
|
|
WORKDIR /source
|
|
COPY . .
|
|
RUN dotnet restore
|
|
RUN dotnet publish -c release -o /srv --no-restore
|
|
|
|
FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine
|
|
ARG templates_version=1.3.0
|
|
#RUN dotnet nuget add source https://pkgs.dev.azure.com/dotnet/Steeltoe/_packaging/dev/nuget/v3/index.json -n SteeltoeDev
|
|
RUN dotnet new --install Steeltoe.NetCoreTool.Templates::${templates_version} &&\
|
|
dotnet new --list | grep steeltoe-webapi
|
|
# WORKDIR /usr/local/src
|
|
# RUN git clone https://github.com/SteeltoeOSS/NetCoreToolTemplates
|
|
# RUN git -C NetCoreToolTemplates checkout release/1.2
|
|
# RUN dotnet new --install NetCoreToolTemplates/src/Content
|
|
WORKDIR /srv
|
|
COPY --from=build /srv .
|
|
ENV DOTNET_URLS http://0.0.0.0:80
|
|
ENTRYPOINT ["dotnet", "Steeltoe.NetCoreToolService.dll"]
|