more refactorin
This commit is contained in:
parent
4dfbcff460
commit
2372fbb620
78 changed files with 120 additions and 398 deletions
12
.dockerignore
Normal file
12
.dockerignore
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
# directories
|
||||||
|
**/bin/
|
||||||
|
**/obj/
|
||||||
|
**/out/
|
||||||
|
|
||||||
|
# files
|
||||||
|
Dockerfile*
|
||||||
|
**/*.trx
|
||||||
|
**/*.md
|
||||||
|
**/*.ps1
|
||||||
|
**/*.cmd
|
||||||
|
**/*.sh
|
8
.editorconfig
Normal file
8
.editorconfig
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 4
|
||||||
|
charset = utf-8
|
||||||
|
trim_trailing_whitespace = false
|
||||||
|
insert_final_newline = false
|
9
.vscode/launch.json
vendored
9
.vscode/launch.json
vendored
|
@ -4,6 +4,15 @@
|
||||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "Docker .NET Core Attach (Preview)",
|
||||||
|
"type": "docker",
|
||||||
|
"request": "attach",
|
||||||
|
"platform": "netCore",
|
||||||
|
"sourceFileMap": {
|
||||||
|
"/": "${workspaceFolder}"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Sledgemapper",
|
"name": "Sledgemapper",
|
||||||
"type": "coreclr",
|
"type": "coreclr",
|
||||||
|
|
2
.vscode/tasks.json
vendored
2
.vscode/tasks.json
vendored
|
@ -25,7 +25,7 @@
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"args": [
|
"args": [
|
||||||
"build",
|
"build",
|
||||||
"${workspaceFolder}/Sledgemapper.Api/src/Sledgemapper.Api.csproj",
|
"${workspaceFolder}/Sledgemapper.Api/Sledgemapper.Api.csproj",
|
||||||
"/property:GenerateFullPaths=true",
|
"/property:GenerateFullPaths=true",
|
||||||
"/consoleloggerparameters:NoSummary"
|
"/consoleloggerparameters:NoSummary"
|
||||||
],
|
],
|
||||||
|
|
59
Dockerfile
Normal file
59
Dockerfile
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
# https://hub.docker.com/_/microsoft-dotnet-core
|
||||||
|
FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
|
||||||
|
WORKDIR /src
|
||||||
|
|
||||||
|
# copy csproj and restore as distinct layers
|
||||||
|
#COPY *.sln .
|
||||||
|
# COPY SignalRChat/*.csproj ./aspnetapp/
|
||||||
|
# WORKDIR /source/aspnetapp
|
||||||
|
# RUN dotnet restore
|
||||||
|
COPY Sledgemapper.Api/*.csproj ./Sledgemapper.Api/
|
||||||
|
COPY Sledgemapper.Shared/*.csproj ./Sledgemapper.Shared/
|
||||||
|
|
||||||
|
WORKDIR /src/Sledgemapper.Api
|
||||||
|
RUN dotnet restore
|
||||||
|
|
||||||
|
WORKDIR /src/Sledgemapper.Shared
|
||||||
|
RUN dotnet restore
|
||||||
|
|
||||||
|
# copy everything else and build app
|
||||||
|
WORKDIR /src
|
||||||
|
COPY Sledgemapper.Api/. ./Sledgemapper.Api/
|
||||||
|
COPY Sledgemapper.Shared/. ./Sledgemapper.Shared/
|
||||||
|
WORKDIR /src/Sledgemapper.Api
|
||||||
|
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"]
|
||||||
|
|
||||||
|
|
||||||
|
# # https://hub.docker.com/_/microsoft-dotnet-core
|
||||||
|
# FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
|
||||||
|
|
||||||
|
# # copy csproj and restore as distinct layers
|
||||||
|
# #COPY *.sln .
|
||||||
|
# WORKDIR /source
|
||||||
|
# COPY Sledgemapper.Api/*.csproj ./Sledgemapper.Api/
|
||||||
|
# WORKDIR /source/Sledgemapper.Api
|
||||||
|
# RUN dotnet restore
|
||||||
|
|
||||||
|
# WORKDIR /source
|
||||||
|
# COPY Sledgemapper.Shared/*.csproj ./Sledgemapper.Shared/
|
||||||
|
# WORKDIR /source/Sledgemapper.Shared
|
||||||
|
# RUN dotnet restore
|
||||||
|
|
||||||
|
# # copy everything else and build app
|
||||||
|
# WORKDIR /source
|
||||||
|
# COPY Sledgemapper.Api/. ./Sledgemapper.Api/
|
||||||
|
# COPY Sledgemapper.Shared/. ./Sledgemapper.Shared/
|
||||||
|
# WORKDIR /source/Sledgemapper.Api
|
||||||
|
# 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", "Sledgemapper.Api.dll"]
|
37
Sledgemapper.Api/.vscode/launch.json
vendored
37
Sledgemapper.Api/.vscode/launch.json
vendored
|
@ -1,37 +0,0 @@
|
||||||
|
|
||||||
{
|
|
||||||
// Use IntelliSense to find out which attributes exist for C# debugging
|
|
||||||
// Use hover for the description of the existing attributes
|
|
||||||
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
|
|
||||||
"version": "0.2.0",
|
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"name": ".NET Core Launch (web)",
|
|
||||||
"type": "coreclr",
|
|
||||||
"request": "launch",
|
|
||||||
"preLaunchTask": "build",
|
|
||||||
// If you have changed target frameworks, make sure to update the program path.
|
|
||||||
"program": "${workspaceFolder}/SignalRChat/bin/Debug/net5.0/SignalRChat.dll",
|
|
||||||
"args": [],
|
|
||||||
"cwd": "${workspaceFolder}",
|
|
||||||
"stopAtEntry": false,
|
|
||||||
// Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
|
|
||||||
"serverReadyAction": {
|
|
||||||
"action": "openExternally",
|
|
||||||
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
|
|
||||||
},
|
|
||||||
"env": {
|
|
||||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
||||||
},
|
|
||||||
"sourceFileMap": {
|
|
||||||
"/Views": "${workspaceFolder}/Views"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": ".NET Core Attach",
|
|
||||||
"type": "coreclr",
|
|
||||||
"request": "attach",
|
|
||||||
"processId": "${command:pickProcess}"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
42
Sledgemapper.Api/.vscode/tasks.json
vendored
42
Sledgemapper.Api/.vscode/tasks.json
vendored
|
@ -1,42 +0,0 @@
|
||||||
{
|
|
||||||
"version": "2.0.0",
|
|
||||||
"tasks": [
|
|
||||||
{
|
|
||||||
"label": "build",
|
|
||||||
"command": "dotnet",
|
|
||||||
"type": "process",
|
|
||||||
"args": [
|
|
||||||
"build",
|
|
||||||
"${workspaceFolder}/SignalRChat/SignalRChat.csproj",
|
|
||||||
"/property:GenerateFullPaths=true",
|
|
||||||
"/consoleloggerparameters:NoSummary"
|
|
||||||
],
|
|
||||||
"problemMatcher": "$msCompile"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "publish",
|
|
||||||
"command": "dotnet",
|
|
||||||
"type": "process",
|
|
||||||
"args": [
|
|
||||||
"publish",
|
|
||||||
"${workspaceFolder}/SignalRChat/SignalRChat.csproj",
|
|
||||||
"/property:GenerateFullPaths=true",
|
|
||||||
"/consoleloggerparameters:NoSummary"
|
|
||||||
],
|
|
||||||
"problemMatcher": "$msCompile"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "watch",
|
|
||||||
"command": "dotnet",
|
|
||||||
"type": "process",
|
|
||||||
"args": [
|
|
||||||
"watch",
|
|
||||||
"run",
|
|
||||||
"${workspaceFolder}/SignalRChat/SignalRChat.csproj",
|
|
||||||
"/property:GenerateFullPaths=true",
|
|
||||||
"/consoleloggerparameters:NoSummary"
|
|
||||||
],
|
|
||||||
"problemMatcher": "$msCompile"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,20 +0,0 @@
|
||||||
# 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"]
|
|
|
@ -1,27 +0,0 @@
|
||||||
# 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"]
|
|
|
@ -1,27 +0,0 @@
|
||||||
# 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"]
|
|
|
@ -1,27 +0,0 @@
|
||||||
# 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"]
|
|
|
@ -1,19 +0,0 @@
|
||||||
# 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"]
|
|
|
@ -1,19 +0,0 @@
|
||||||
# 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"]
|
|
|
@ -1,19 +0,0 @@
|
||||||
# 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"]
|
|
|
@ -1,19 +0,0 @@
|
||||||
# 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"]
|
|
|
@ -1,20 +0,0 @@
|
||||||
# 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"]
|
|
|
@ -1,24 +0,0 @@
|
||||||
# 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"]
|
|
|
@ -1,19 +0,0 @@
|
||||||
# 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"]
|
|
|
@ -1,7 +1,7 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\..\Sledgemapper.Shared\Sledgemapper.Shared.csproj" />
|
<ProjectReference Include="..\Sledgemapper.Shared\Sledgemapper.Shared.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
|
@ -26,7 +26,7 @@ namespace SignalRChat
|
||||||
{
|
{
|
||||||
services.AddRazorPages();
|
services.AddRazorPages();
|
||||||
services.AddSignalR();
|
services.AddSignalR();
|
||||||
services.AddMediatR(typeof(Startup));
|
// services.AddMediatR(typeof(Startup));
|
||||||
}
|
}
|
||||||
|
|
||||||
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
34
Sledgemapper.Api/src/.vscode/launch.json
vendored
34
Sledgemapper.Api/src/.vscode/launch.json
vendored
|
@ -1,34 +0,0 @@
|
||||||
{
|
|
||||||
// Use IntelliSense to learn about possible attributes.
|
|
||||||
// Hover to view descriptions of existing attributes.
|
|
||||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
||||||
"version": "0.2.0",
|
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"name": ".NET Core Launch (web)",
|
|
||||||
"type": "coreclr",
|
|
||||||
"request": "launch",
|
|
||||||
"preLaunchTask": "build",
|
|
||||||
"program": "${workspaceFolder}/bin/Debug/net5.0/SignalRChat.dll",
|
|
||||||
"args": [],
|
|
||||||
"cwd": "${workspaceFolder}",
|
|
||||||
"stopAtEntry": false,
|
|
||||||
"serverReadyAction": {
|
|
||||||
"action": "openExternally",
|
|
||||||
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
|
|
||||||
},
|
|
||||||
"env": {
|
|
||||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
||||||
},
|
|
||||||
"sourceFileMap": {
|
|
||||||
"/Views": "${workspaceFolder}/Views"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": ".NET Core Attach",
|
|
||||||
"type": "coreclr",
|
|
||||||
"request": "attach",
|
|
||||||
"processId": "${command:pickProcess}"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
42
Sledgemapper.Api/src/.vscode/tasks.json
vendored
42
Sledgemapper.Api/src/.vscode/tasks.json
vendored
|
@ -1,42 +0,0 @@
|
||||||
{
|
|
||||||
"version": "2.0.0",
|
|
||||||
"tasks": [
|
|
||||||
{
|
|
||||||
"label": "build",
|
|
||||||
"command": "dotnet",
|
|
||||||
"type": "process",
|
|
||||||
"args": [
|
|
||||||
"build",
|
|
||||||
"${workspaceFolder}/SignalRChat.csproj",
|
|
||||||
"/property:GenerateFullPaths=true",
|
|
||||||
"/consoleloggerparameters:NoSummary"
|
|
||||||
],
|
|
||||||
"problemMatcher": "$msCompile"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "publish",
|
|
||||||
"command": "dotnet",
|
|
||||||
"type": "process",
|
|
||||||
"args": [
|
|
||||||
"publish",
|
|
||||||
"${workspaceFolder}/SignalRChat.csproj",
|
|
||||||
"/property:GenerateFullPaths=true",
|
|
||||||
"/consoleloggerparameters:NoSummary"
|
|
||||||
],
|
|
||||||
"problemMatcher": "$msCompile"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "watch",
|
|
||||||
"command": "dotnet",
|
|
||||||
"type": "process",
|
|
||||||
"args": [
|
|
||||||
"watch",
|
|
||||||
"run",
|
|
||||||
"${workspaceFolder}/SignalRChat.csproj",
|
|
||||||
"/property:GenerateFullPaths=true",
|
|
||||||
"/consoleloggerparameters:NoSummary"
|
|
||||||
],
|
|
||||||
"problemMatcher": "$msCompile"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.3 KiB |
29
docker-compose.yml
Normal file
29
docker-compose.yml
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
# docker-compose.yml
|
||||||
|
version: '3'
|
||||||
|
|
||||||
|
services:
|
||||||
|
web:
|
||||||
|
build:
|
||||||
|
# build from Dockerfile
|
||||||
|
context: .
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
ports:
|
||||||
|
- "5000:80"
|
||||||
|
# volumes:
|
||||||
|
# - .:.
|
||||||
|
|
||||||
|
redis:
|
||||||
|
image: redis
|
||||||
|
|
||||||
|
rabbitmq:
|
||||||
|
image: 'docker.io/bitnami/rabbitmq:3.8-debian-10'
|
||||||
|
ports:
|
||||||
|
- '4369:4369'
|
||||||
|
- '5672:5672'
|
||||||
|
- '25672:25672'
|
||||||
|
- '15672:15672'
|
||||||
|
volumes:
|
||||||
|
- 'rabbitmq_data:/bitnami'
|
||||||
|
volumes:
|
||||||
|
rabbitmq_data:
|
||||||
|
driver: local
|
Loading…
Add table
Add a link
Reference in a new issue