Skip to content

Commit

Permalink
Fixing base docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
merschformann committed Sep 16, 2021
1 parent 5c27d78 commit 900e90d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SC.Service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#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:5.0-buster-slim AS base
FROM mcr.microsoft.com/dotnet/aspnet:5.0 AS base
WORKDIR /app
EXPOSE 80

FROM mcr.microsoft.com/dotnet/core/sdk:5.0-buster AS build
FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
WORKDIR /src
COPY ["SC.Service/SC.Service.csproj", "SC.Service/"]
RUN dotnet restore "SC.Service/SC.Service.csproj"
Expand Down

0 comments on commit 900e90d

Please sign in to comment.