added xway;
updated deps;
This commit is contained in:
parent
27f0d0ab62
commit
0e76e9ad6c
@ -44,3 +44,15 @@ services:
|
|||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
expose:
|
expose:
|
||||||
- 5000
|
- 5000
|
||||||
|
depends_on:
|
||||||
|
- mongo
|
||||||
|
xway:
|
||||||
|
build:
|
||||||
|
context: x_way
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
expose:
|
||||||
|
- 5000
|
||||||
|
depends_on:
|
||||||
|
- entity_ident
|
||||||
|
- orchestration
|
||||||
|
- eventstore
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
8
components/x_way/Dockerfile
Normal file
8
components/x_way/Dockerfile
Normal 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" ]
|
||||||
Loading…
x
Reference in New Issue
Block a user