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.
10 lines
299 B
10 lines
299 B
FROM mcr.microsoft.com/dotnet/core/runtime:3.1 AS runtime
|
|
LABEL maintainer="colin.in@foxmail.com"
|
|
WORKDIR /app
|
|
|
|
COPY . /app
|
|
COPY ../../../configuration/account/AuthServer.Host/appsettings.Development.json /app/appsettings.Development.json
|
|
|
|
EXPOSE 80/tcp
|
|
|
|
ENTRYPOINT ["dotnet", "AuthServer.Host.dll"]
|