cartservice: add net-tools to build

Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
This commit is contained in:
Ahmet Alp Balkan 2018-06-28 11:42:12 -07:00
parent 39fd019343
commit c9f2c89b9c

View file

@ -5,6 +5,5 @@ RUN dotnet restore
RUN dotnet build RUN dotnet build
RUN dotnet publish RUN dotnet publish
WORKDIR /app/bin/Debug/netcoreapp2.0 WORKDIR /app/bin/Debug/netcoreapp2.0
ENV PORT 7070 RUN apt update && apt install net-tools telnet
EXPOSE 7070
ENTRYPOINT ["dotnet", "cartservice.dll", "start"] ENTRYPOINT ["dotnet", "cartservice.dll", "start"]