Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/namesweb/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM microsoft/dotnet:2.1.2-aspnetcore-runtime-alpine AS base
FROM microsoft/dotnet:2.2.2-aspnetcore-runtime-alpine AS base
WORKDIR /app
#EXPOSE 57270
#EXPOSE 44348
EXPOSE 443

FROM microsoft/dotnet:2.1.302-sdk-alpine AS build
FROM microsoft/dotnet:2.2.104-sdk-alpine AS build
WORKDIR /src
COPY namesweb.csproj .
RUN dotnet restore
Expand Down
2 changes: 1 addition & 1 deletion src/namesweb/namesweb.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>netcoreapp2.2</TargetFramework>
<UserSecretsId>7A303942-47A6-491F-80AD-78057FA8B0CB</UserSecretsId>
</PropertyGroup>

Expand Down