You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
320 B
11 lines
320 B
2 years ago
|
#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:5.0 AS base
|
||
|
WORKDIR /app
|
||
|
EXPOSE 44304
|
||
|
EXPOSE 443
|
||
|
|
||
|
FROM base AS final
|
||
|
WORKDIR . .
|
||
|
COPY . .
|
||
|
ENTRYPOINT ["dotnet", "ZNYC.Recruitment.Admin.WebApi.dll"]
|