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 Api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# For more info see: http://aka.ms/VSContainerToolingDockerfiles
FROM microsoft/aspnetcore:2.0 AS base
FROM mcr.microsoft.com/dotnet/aspnet AS base
WORKDIR /app
EXPOSE 80

FROM microsoft/aspnetcore-build:2.0 AS builder
FROM mcr.microsoft.com/dotnet/sdk AS builder
ARG BuildConfiguration=Release
WORKDIR /src
COPY *.sln ./
Expand Down
4 changes: 2 additions & 2 deletions Web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# For more info see: http://aka.ms/VSContainerToolingDockerfiles
FROM microsoft/aspnetcore:2.0 AS base
FROM mcr.microsoft.com/dotnet/aspnet AS base
WORKDIR /app
EXPOSE 80

FROM microsoft/aspnetcore-build:2.0 AS builder
FROM mcr.microsoft.com/dotnet/sdk AS builder
ARG BuildConfiguration=Release
WORKDIR /src
COPY *.sln ./
Expand Down