docker support

master
Tudor Stanciu 2020-06-07 04:25:41 +03:00
parent 138c5aae46
commit f643c05795
3 changed files with 56 additions and 0 deletions

25
.dockerignore Normal file
View File

@ -0,0 +1,25 @@
**/.classpath
**/.dockerignore
**/.env
**/.git
**/.gitignore
**/.project
**/.settings
**/.toolstarget
**/.vs
**/.vscode
**/*.*proj.user
**/*.dbmdl
**/*.jfm
**/azds.yaml
**/bin
**/charts
**/docker-compose*
**/Dockerfile*
**/node_modules
**/npm-debug.log
**/obj
**/secrets.dev.yaml
**/values.dev.yaml
LICENSE
README.md

View File

@ -2,6 +2,7 @@
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
</PropertyGroup>
<ItemGroup>

30
Chatbot.Api/Dockerfile Normal file
View File

@ -0,0 +1,30 @@
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-buster-slim AS base
WORKDIR /app
EXPOSE 80
FROM mcr.microsoft.com/dotnet/core/sdk:3.1-buster AS build
WORKDIR /src
COPY dependencies.props .
COPY Directory.Build.props .
COPY ["Chatbot.Api/Chatbot.Api.csproj", "Chatbot.Api/"]
COPY ["Chatbot.Api.Domain.Data/Chatbot.Api.Domain.Data.csproj", "Chatbot.Api.Domain.Data/"]
COPY ["Chatbot.Api.Domain/Chatbot.Api.Domain.csproj", "Chatbot.Api.Domain/"]
COPY ["Chatbot.Api.Application/Chatbot.Api.Application.csproj", "Chatbot.Api.Application/"]
RUN dotnet restore "Chatbot.Api/Chatbot.Api.csproj"
COPY . .
WORKDIR "/src/Chatbot.Api"
RUN dotnet build "Chatbot.Api.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "Chatbot.Api.csproj" -c Release -o /app/publish
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENV urls="http://*:80"
ENV ConnectionStrings__DatabaseConnection="Server=alpine-docker;Database=ReverseProxy_Chatbot;User Id=sa;Password=VN94STAsta!2;MultipleActiveResultSets=true"
ENTRYPOINT ["dotnet", "Chatbot.Api.dll", "--docker"]