Removed ConsoleClientDemo Docker

pull/816/head
Atakan Özceviz 7 years ago
parent 9f4ff5cefa
commit f6ea4c0eb2

@ -1,18 +0,0 @@
FROM microsoft/dotnet:2.2-aspnetcore-runtime-alpine AS base
WORKDIR /app
EXPOSE 80
FROM microsoft/dotnet:2.2-sdk-alpine AS build
WORKDIR /src
COPY . .
WORKDIR "/src/samples/MicroserviceDemo/applications/ConsoleClientDemo"
RUN dotnet restore -nowarn:msb3202,nu1503
RUN dotnet build --no-restore -c Release -o /app
FROM build AS publish
RUN dotnet publish --no-restore -c Release -o /app
FROM base AS final
WORKDIR /app
COPY --from=publish /app .
ENTRYPOINT ["dotnet", "ConsoleClientDemo.dll"]

@ -156,16 +156,6 @@ services:
ports:
- 51954:80
console-client-demo:
environment:
- ElasticSearch__Url=http://elasticsearch:9200
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://0.0.0.0:80
- RemoteServices__Default__BaseUrl=http://internal-gateway/
- IdentityClients__Default__Authority=http://auth-server:64999
ports:
- 63898:80
public-website:
environment:
- ElasticSearch__Url=http://elasticsearch:9200

@ -117,15 +117,6 @@ services:
- elasticsearch
- backend-admin-app-gateway
console-client-demo:
image: 'microservice-demo/console-client-demo:${TAG:-latest}'
build:
context: ../../
dockerfile: samples/MicroserviceDemo/applications/ConsoleClientDemo/Dockerfile
depends_on:
- elasticsearch
- internal-gateway
public-website:
image: 'microservice-demo/public-website:${TAG:-latest}'
build:

Loading…
Cancel
Save