BotSharp/Dockerfile

12 lines
257 B
Docker
Raw Normal View History

2018-08-13 16:12:10 +00:00
# stage 1: build
FROM microsoft/dotnet AS botsharp
2018-08-13 16:12:10 +00:00
WORKDIR /source
# copies the rest of your code
2018-08-13 16:12:10 +00:00
COPY . .
RUN dotnet build
RUN dotnet publish --output /app/ --configuration Debug
2018-08-13 16:12:10 +00:00
# stage 2: run
2018-08-13 12:26:12 +00:00
WORKDIR /app
2018-08-13 16:12:10 +00:00
ENTRYPOINT [ "dotnet", "BotSharp.WebHost.dll" ]