Browse Source

Removed RC tag from dockerfile

pull/1786/head
Sumit Ghosh 3 years ago
parent
commit
f2117a4a3f
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/ApiGateways/Web.Bff.Shopping/aggregator/Dockerfile

+ 2
- 2
src/ApiGateways/Web.Bff.Shopping/aggregator/Dockerfile View File

@ -1,8 +1,8 @@
FROM mcr.microsoft.com/dotnet/aspnet:6.0.0-rc.2 AS base
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
WORKDIR /app WORKDIR /app
EXPOSE 80 EXPOSE 80
FROM mcr.microsoft.com/dotnet/sdk:6.0.100-rc.2 AS build
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
WORKDIR /src WORKDIR /src
# It's important to keep lines from here down to "COPY . ." identical in all Dockerfiles # It's important to keep lines from here down to "COPY . ." identical in all Dockerfiles


Loading…
Cancel
Save