added xway;

updated deps;
This commit is contained in:
Marco Zeisler 2021-05-28 19:24:10 +02:00
parent 27f0d0ab62
commit 0e76e9ad6c
6 changed files with 21 additions and 1 deletions

View File

@ -43,4 +43,16 @@ services:
context: entitiy_ident/entity_ident_service
dockerfile: Dockerfile
expose:
- 5000
- 5000
depends_on:
- mongo
xway:
build:
context: x_way
dockerfile: Dockerfile
expose:
- 5000
depends_on:
- entity_ident
- orchestration
- eventstore

View File

@ -0,0 +1,8 @@
FROM python:3.8-slim
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
ENV PORT 5000
EXPOSE 5000
ENTRYPOINT [ "python" ]
CMD [ "x_way_server.py" ]