Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated to dotnet core 2.2.2 #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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