Ajout Dockerfile
continuous-integration/drone/push Build was killed
Details
continuous-integration/drone/push Build was killed
Details
parent
af7eeb6810
commit
c3c9ad26ea
@ -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
|
@ -0,0 +1,31 @@
|
|||||||
|
#See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging.
|
||||||
|
|
||||||
|
FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base
|
||||||
|
WORKDIR /app
|
||||||
|
EXPOSE 80
|
||||||
|
EXPOSE 443
|
||||||
|
|
||||||
|
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
|
||||||
|
WORKDIR /src
|
||||||
|
COPY ["OpenLibraryWrapper/OpenLibraryWrapper.csproj", "OpenLibraryWrapper/"]
|
||||||
|
COPY ["LibraryDTO/LibraryDTO.csproj", "LibraryDTO/"]
|
||||||
|
COPY ["StubbedDTO/StubbedDTO.csproj", "StubbedDTO/"]
|
||||||
|
COPY ["JsonReader/JsonReader.csproj", "JsonReader/"]
|
||||||
|
COPY ["DtoAbstractLayer/DtoAbstractLayer.csproj", "DtoAbstractLayer/"]
|
||||||
|
COPY ["OpenLibraryClient/OpenLibraryClient.csproj", "OpenLibraryClient/"]
|
||||||
|
COPY ["MyLibraryManager/MyLibraryManager.csproj", "MyLibraryManager/"]
|
||||||
|
COPY ["MyLibraryDB/MyLibraryDB.csproj", "MyLibraryDB/"]
|
||||||
|
COPY ["MyLibraryEntities/MyLibraryEntities.csproj", "MyLibraryEntities/"]
|
||||||
|
COPY ["StubbedDB/StubbedDB.csproj", "StubbedDB/"]
|
||||||
|
RUN dotnet restore "OpenLibraryWrapper/OpenLibraryWrapper.csproj"
|
||||||
|
COPY . .
|
||||||
|
WORKDIR "/src/OpenLibraryWrapper"
|
||||||
|
RUN dotnet build "OpenLibraryWrapper.csproj" -c Release -o /app/build
|
||||||
|
|
||||||
|
FROM build AS publish
|
||||||
|
RUN dotnet publish "OpenLibraryWrapper.csproj" -c Release -o /app/publish /p:UseAppHost=false
|
||||||
|
|
||||||
|
FROM base AS final
|
||||||
|
WORKDIR /app
|
||||||
|
COPY --from=publish /app/publish .
|
||||||
|
ENTRYPOINT ["dotnet", "OpenLibraryWrapper.dll"]
|
@ -1,49 +1,56 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://json.schemastore.org/launchsettings.json",
|
"profiles": {
|
||||||
"iisSettings": {
|
"http": {
|
||||||
"windowsAuthentication": false,
|
"commandName": "Project",
|
||||||
"anonymousAuthentication": true,
|
"launchBrowser": true,
|
||||||
"iisExpress": {
|
"launchUrl": "swagger",
|
||||||
"applicationUrl": "http://localhost:34424",
|
"environmentVariables": {
|
||||||
"sslPort": 44344
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||||
}
|
},
|
||||||
},
|
"applicationUrl": "http://localhost:5117",
|
||||||
"profiles": {
|
"dotnetRunMessages": true
|
||||||
"http": {
|
},
|
||||||
"commandName": "Project",
|
"https": {
|
||||||
"launchBrowser": true,
|
"commandName": "Project",
|
||||||
"launchUrl": "swagger",
|
"launchBrowser": true,
|
||||||
"applicationUrl": "http://localhost:5117",
|
"launchUrl": "swagger",
|
||||||
"environmentVariables": {
|
"environmentVariables": {
|
||||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||||
},
|
},
|
||||||
"dotnetRunMessages": true
|
"applicationUrl": "https://localhost:7263;http://localhost:5117",
|
||||||
},
|
"dotnetRunMessages": true
|
||||||
"https": {
|
},
|
||||||
"commandName": "Project",
|
"IIS Express": {
|
||||||
"launchBrowser": true,
|
"commandName": "IISExpress",
|
||||||
"launchUrl": "swagger",
|
"launchBrowser": true,
|
||||||
"applicationUrl": "https://localhost:7263;http://localhost:5117",
|
"launchUrl": "swagger",
|
||||||
"environmentVariables": {
|
"environmentVariables": {
|
||||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||||
},
|
}
|
||||||
"dotnetRunMessages": true
|
},
|
||||||
},
|
"OpenLibraryWrapper": {
|
||||||
"IIS Express": {
|
"commandName": "Project",
|
||||||
"commandName": "IISExpress",
|
"launchBrowser": true,
|
||||||
"launchBrowser": true,
|
"environmentVariables": {
|
||||||
"launchUrl": "swagger",
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||||
"environmentVariables": {
|
},
|
||||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
"applicationUrl": "https://localhost:34198;http://localhost:46179"
|
||||||
}
|
},
|
||||||
},
|
"Docker": {
|
||||||
"OpenLibraryWrapper": {
|
"commandName": "Docker",
|
||||||
"commandName": "Project",
|
"launchBrowser": true,
|
||||||
"launchBrowser": true,
|
"launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}/swagger",
|
||||||
"applicationUrl": "https://localhost:34198;http://localhost:46179",
|
"publishAllPorts": true,
|
||||||
"environmentVariables": {
|
"useSSL": true
|
||||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
}
|
||||||
}
|
},
|
||||||
}
|
"$schema": "https://json.schemastore.org/launchsettings.json",
|
||||||
}
|
"iisSettings": {
|
||||||
|
"windowsAuthentication": false,
|
||||||
|
"anonymousAuthentication": true,
|
||||||
|
"iisExpress": {
|
||||||
|
"applicationUrl": "http://localhost:34424",
|
||||||
|
"sslPort": 44344
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in new issue