Skip to content

Commit 35b4901

Browse files
authored
fix(Dockerfile): update to NET 6.0 (#487)
1 parent a9fc9b0 commit 35b4901

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/WebUI/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
22

33
# This stage is used for VS debugging on Docker
4-
FROM mcr.microsoft.com/dotnet/aspnet:5.0 AS base
4+
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
55
ENV ASPNETCORE_URLS=https://+:5001;http://+:5000
66
WORKDIR /app
77
EXPOSE 5000
88
EXPOSE 5001
99

10-
FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
10+
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
1111
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash -
1212
RUN apt install -y nodejs
1313
WORKDIR /src

0 commit comments

Comments
 (0)