﻿FROM microsoft/aspnetcore:2.0
WORKDIR /app
EXPOSE 80
COPY . /app
ENTRYPOINT ["dotnet", "E2ETestAppCore20.dll"]