docker stuff
This commit is contained in:
parent
0c077ea713
commit
632f7c60df
68 changed files with 244 additions and 2 deletions
20
SignalRChat/Dockerfile
Normal file
20
SignalRChat/Dockerfile
Normal file
|
@ -0,0 +1,20 @@
|
|||
# https://hub.docker.com/_/microsoft-dotnet-core
|
||||
FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
|
||||
WORKDIR /source
|
||||
|
||||
# copy csproj and restore as distinct layers
|
||||
#COPY *.sln .
|
||||
COPY SignalRChat/*.csproj ./aspnetapp/
|
||||
WORKDIR /source/aspnetapp
|
||||
RUN dotnet restore
|
||||
|
||||
# copy everything else and build app
|
||||
COPY SignalRChat/. ./aspnetapp/
|
||||
WORKDIR /source/aspnetapp
|
||||
RUN dotnet publish -c release -o /app --no-restore
|
||||
|
||||
# final stage/image
|
||||
FROM mcr.microsoft.com/dotnet/aspnet:5.0
|
||||
WORKDIR /app
|
||||
COPY --from=build /app ./
|
||||
ENTRYPOINT ["dotnet", "SignalRChat.dll"]
|
27
SignalRChat/Dockerfile.alpine-arm64
Normal file
27
SignalRChat/Dockerfile.alpine-arm64
Normal file
|
@ -0,0 +1,27 @@
|
|||
# https://hub.docker.com/_/microsoft-dotnet-core
|
||||
FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS build
|
||||
WORKDIR /source
|
||||
|
||||
# copy csproj and restore as distinct layers
|
||||
COPY *.sln .
|
||||
COPY aspnetapp/*.csproj ./aspnetapp/
|
||||
RUN dotnet restore -r linux-musl-arm64
|
||||
|
||||
# copy everything else and build app
|
||||
COPY aspnetapp/. ./aspnetapp/
|
||||
WORKDIR /source/aspnetapp
|
||||
RUN dotnet publish -c release -o /app -r linux-musl-arm64 --self-contained false --no-restore
|
||||
|
||||
# final stage/image
|
||||
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-alpine-arm64v8
|
||||
WORKDIR /app
|
||||
COPY --from=build /app ./
|
||||
|
||||
# See: https://github.com/dotnet/announcements/issues/20
|
||||
# Uncomment to enable globalization APIs (or delete)
|
||||
#ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT false
|
||||
#RUN apk add --no-cache icu-libs
|
||||
#ENV LC_ALL en_US.UTF-8
|
||||
#ENV LANG en_US.UTF-8
|
||||
|
||||
ENTRYPOINT ["./aspnetapp"]
|
27
SignalRChat/Dockerfile.alpine-x64
Normal file
27
SignalRChat/Dockerfile.alpine-x64
Normal file
|
@ -0,0 +1,27 @@
|
|||
# https://hub.docker.com/_/microsoft-dotnet-core
|
||||
FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS build
|
||||
WORKDIR /source
|
||||
|
||||
# copy csproj and restore as distinct layers
|
||||
COPY *.sln .
|
||||
COPY aspnetapp/*.csproj ./aspnetapp/
|
||||
RUN dotnet restore -r linux-musl-x64
|
||||
|
||||
# copy everything else and build app
|
||||
COPY aspnetapp/. ./aspnetapp/
|
||||
WORKDIR /source/aspnetapp
|
||||
RUN dotnet publish -c release -o /app -r linux-musl-x64 --self-contained false --no-restore
|
||||
|
||||
# final stage/image
|
||||
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-alpine
|
||||
WORKDIR /app
|
||||
COPY --from=build /app ./
|
||||
|
||||
# See: https://github.com/dotnet/announcements/issues/20
|
||||
# Uncomment to enable globalization APIs (or delete)
|
||||
#ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT false
|
||||
#RUN apk add --no-cache icu-libs
|
||||
#ENV LC_ALL en_US.UTF-8
|
||||
#ENV LANG en_US.UTF-8
|
||||
|
||||
ENTRYPOINT ["./aspnetapp"]
|
27
SignalRChat/Dockerfile.alpine-x64-slim
Normal file
27
SignalRChat/Dockerfile.alpine-x64-slim
Normal file
|
@ -0,0 +1,27 @@
|
|||
# https://hub.docker.com/_/microsoft-dotnet-core
|
||||
FROM mcr.microsoft.com/dotnet/core/sdk:3.1-alpine AS build
|
||||
WORKDIR /source
|
||||
|
||||
# copy csproj and restore as distinct layers
|
||||
COPY *.sln .
|
||||
COPY aspnetapp/*.csproj ./aspnetapp/
|
||||
RUN dotnet restore -r linux-musl-x64
|
||||
|
||||
# copy everything else and build app
|
||||
COPY aspnetapp/. ./aspnetapp/
|
||||
WORKDIR /source/aspnetapp
|
||||
RUN dotnet publish -c release -o /app -r linux-musl-x64 --self-contained true --no-restore /p:PublishTrimmed=true /p:PublishReadyToRun=true
|
||||
|
||||
# final stage/image
|
||||
FROM mcr.microsoft.com/dotnet/core/runtime-deps:3.1-alpine
|
||||
WORKDIR /app
|
||||
COPY --from=build /app ./
|
||||
|
||||
# See: https://github.com/dotnet/announcements/issues/20
|
||||
# Uncomment to enable globalization APIs (or delete)
|
||||
#ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT false
|
||||
#RUN apk add --no-cache icu-libs
|
||||
#ENV LC_ALL en_US.UTF-8
|
||||
#ENV LANG en_US.UTF-8
|
||||
|
||||
ENTRYPOINT ["./aspnetapp"]
|
19
SignalRChat/Dockerfile.debian-arm32
Normal file
19
SignalRChat/Dockerfile.debian-arm32
Normal file
|
@ -0,0 +1,19 @@
|
|||
# https://hub.docker.com/_/microsoft-dotnet-core
|
||||
FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS build
|
||||
WORKDIR /source
|
||||
|
||||
# copy csproj and restore as distinct layers
|
||||
COPY *.sln .
|
||||
COPY aspnetapp/*.csproj ./aspnetapp/
|
||||
RUN dotnet restore -r linux-arm
|
||||
|
||||
# copy everything else and build app
|
||||
COPY aspnetapp/. ./aspnetapp/
|
||||
WORKDIR /source/aspnetapp
|
||||
RUN dotnet publish -c release -o /app -r linux-arm --self-contained false --no-restore
|
||||
|
||||
# final stage/image
|
||||
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-buster-slim-arm32v7
|
||||
WORKDIR /app
|
||||
COPY --from=build /app ./
|
||||
ENTRYPOINT ["./aspnetapp"]
|
19
SignalRChat/Dockerfile.debian-arm64
Normal file
19
SignalRChat/Dockerfile.debian-arm64
Normal file
|
@ -0,0 +1,19 @@
|
|||
# https://hub.docker.com/_/microsoft-dotnet-core
|
||||
FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS build
|
||||
WORKDIR /source
|
||||
|
||||
# copy csproj and restore as distinct layers
|
||||
COPY *.sln .
|
||||
COPY aspnetapp/*.csproj ./aspnetapp/
|
||||
RUN dotnet restore -r linux-arm64
|
||||
|
||||
# copy everything else and build app
|
||||
COPY aspnetapp/. ./aspnetapp/
|
||||
WORKDIR /source/aspnetapp
|
||||
RUN dotnet publish -c release -o /app -r linux-arm64 --self-contained false --no-restore
|
||||
|
||||
# final stage/image
|
||||
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-buster-slim-arm64v8
|
||||
WORKDIR /app
|
||||
COPY --from=build /app ./
|
||||
ENTRYPOINT ["./aspnetapp"]
|
19
SignalRChat/Dockerfile.debian-x64
Normal file
19
SignalRChat/Dockerfile.debian-x64
Normal file
|
@ -0,0 +1,19 @@
|
|||
# https://hub.docker.com/_/microsoft-dotnet-core
|
||||
FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS build
|
||||
WORKDIR /source
|
||||
|
||||
# copy csproj and restore as distinct layers
|
||||
COPY *.sln .
|
||||
COPY aspnetapp/*.csproj ./aspnetapp/
|
||||
RUN dotnet restore -r linux-x64
|
||||
|
||||
# copy everything else and build app
|
||||
COPY aspnetapp/. ./aspnetapp/
|
||||
WORKDIR /source/aspnetapp
|
||||
RUN dotnet publish -c release -o /app -r linux-x64 --self-contained false --no-restore
|
||||
|
||||
# final stage/image
|
||||
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-buster-slim
|
||||
WORKDIR /app
|
||||
COPY --from=build /app ./
|
||||
ENTRYPOINT ["./aspnetapp"]
|
19
SignalRChat/Dockerfile.debian-x64-slim
Normal file
19
SignalRChat/Dockerfile.debian-x64-slim
Normal file
|
@ -0,0 +1,19 @@
|
|||
# https://hub.docker.com/_/microsoft-dotnet-core
|
||||
FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS build
|
||||
WORKDIR /source
|
||||
|
||||
# copy csproj and restore as distinct layers
|
||||
COPY *.sln .
|
||||
COPY aspnetapp/*.csproj ./aspnetapp/
|
||||
RUN dotnet restore -r linux-x64
|
||||
|
||||
# copy everything else and build app
|
||||
COPY aspnetapp/. ./aspnetapp/
|
||||
WORKDIR /source/aspnetapp
|
||||
RUN dotnet publish -c release -o /app -r linux-x64 --self-contained true --no-restore /p:PublishTrimmed=true /p:PublishReadyToRun=true
|
||||
|
||||
# final stage/image
|
||||
FROM mcr.microsoft.com/dotnet/core/runtime-deps:3.1-buster-slim
|
||||
WORKDIR /app
|
||||
COPY --from=build /app ./
|
||||
ENTRYPOINT ["./aspnetapp"]
|
20
SignalRChat/Dockerfile.nanoserver-x64
Normal file
20
SignalRChat/Dockerfile.nanoserver-x64
Normal file
|
@ -0,0 +1,20 @@
|
|||
# https://hub.docker.com/_/microsoft-dotnet-core
|
||||
FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS build
|
||||
WORKDIR /source
|
||||
|
||||
# copy csproj and restore as distinct layers
|
||||
COPY *.sln .
|
||||
COPY aspnetapp/*.csproj ./aspnetapp/
|
||||
RUN dotnet restore -r win-x64
|
||||
|
||||
# copy everything else and build app
|
||||
COPY aspnetapp/. ./aspnetapp/
|
||||
WORKDIR /source/aspnetapp
|
||||
RUN dotnet publish -c release -o /app -r win-x64 --self-contained false --no-restore
|
||||
|
||||
# final stage/image
|
||||
# Uses the 2009 release; 2004, 1909, 1903, and 1809 are other choices
|
||||
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-nanoserver-2009 AS runtime
|
||||
WORKDIR /app
|
||||
COPY --from=build /app ./
|
||||
ENTRYPOINT ["aspnetapp"]
|
24
SignalRChat/Dockerfile.nanoserver-x64-slim
Normal file
24
SignalRChat/Dockerfile.nanoserver-x64-slim
Normal file
|
@ -0,0 +1,24 @@
|
|||
# https://hub.docker.com/_/microsoft-dotnet-core
|
||||
FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS build
|
||||
WORKDIR /source
|
||||
|
||||
# copy csproj and restore as distinct layers
|
||||
COPY *.sln .
|
||||
COPY aspnetapp/*.csproj ./aspnetapp/
|
||||
RUN dotnet restore -r win-x64
|
||||
|
||||
# copy everything else and build app
|
||||
COPY aspnetapp/. ./aspnetapp/
|
||||
WORKDIR /source/aspnetapp
|
||||
RUN dotnet publish -c release -o /app -r win-x64 --self-contained true --no-restore /p:PublishTrimmed=true /p:PublishReadyToRun=true
|
||||
|
||||
# final stage/image
|
||||
# Uses the 2009 release; 2004, 1909, 1903, and 1809 are other choices
|
||||
FROM mcr.microsoft.com/windows/nanoserver:2009 AS runtime
|
||||
WORKDIR /app
|
||||
COPY --from=build /app ./
|
||||
|
||||
# Configure web servers to bind to port 80 when present
|
||||
ENV ASPNETCORE_URLS=http://+:80
|
||||
|
||||
ENTRYPOINT ["aspnetapp"]
|
19
SignalRChat/Dockerfile.ubuntu-x64
Normal file
19
SignalRChat/Dockerfile.ubuntu-x64
Normal file
|
@ -0,0 +1,19 @@
|
|||
# https://hub.docker.com/_/microsoft-dotnet-core
|
||||
FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS build
|
||||
WORKDIR /source
|
||||
|
||||
# copy csproj and restore as distinct layers
|
||||
COPY *.sln .
|
||||
COPY aspnetapp/*.csproj ./aspnetapp/
|
||||
RUN dotnet restore -r linux-x64
|
||||
|
||||
# copy everything else and build app
|
||||
COPY aspnetapp/. ./aspnetapp/
|
||||
WORKDIR /source/aspnetapp
|
||||
RUN dotnet publish -c release -o /app -r linux-x64 --self-contained false --no-restore
|
||||
|
||||
# final stage/image
|
||||
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-bionic
|
||||
WORKDIR /app
|
||||
COPY --from=build /app ./
|
||||
ENTRYPOINT ["./aspnetapp"]
|
|
@ -25,7 +25,7 @@ namespace SignalRChat
|
|||
public void ConfigureServices(IServiceCollection services)
|
||||
{
|
||||
services.AddRazorPages();
|
||||
services.AddSignalR();
|
||||
services.AddSignalR();
|
||||
|
||||
}
|
||||
|
||||
|
@ -53,9 +53,11 @@ namespace SignalRChat
|
|||
app.UseEndpoints(endpoints =>
|
||||
{
|
||||
endpoints.MapRazorPages();
|
||||
endpoints.MapHub<ChatHub>("/chathub");
|
||||
endpoints.MapHub<ChatHub>("/chathub");
|
||||
|
||||
});
|
||||
|
||||
Console.WriteLine("blah");
|
||||
}
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.3 KiB |
Loading…
Add table
Add a link
Reference in a new issue