Programming/Docker
Containerising Blazor Applications With Docker In Window10
/////////////////// 2021 - 12 - 23 수정 dotnet 6 버전 출시와 함께 dockerfile도 수정해줘야한다. #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/aspnet:6.0 AS base WORKDIR /app EXPOSE 80 EXPOSE 443 FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build WORKDIR /src COPY zomdleageApiServer.csproj . RUN dotnet..
2020. 11. 28. 19:53
최근댓글