Skip to content

Commit

Permalink
🚧 test 0.12 cloudcontroller
Browse files Browse the repository at this point in the history
  • Loading branch information
ff137 committed Apr 23, 2024
1 parent fdc46a7 commit 706ec42
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
aiohttp~=3.9.2
aries-cloudcontroller==0.11.0.post5
git+https://github.com/didx-xyz/aries-cloudcontroller-python@1d89a9a602e9b9a495648225b0869cd7fb8ccf53
base58~=2.1.1
fastapi~=0.110.0
fastapi_websocket_pubsub~=0.3.8
Expand Down
3 changes: 3 additions & 0 deletions dockerfiles/endorser/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ COPY shared /shared

WORKDIR /endorser

RUN apt-get -y update
RUN apt-get -y install git

RUN pip install --no-cache-dir -r requirements.txt -r requirements.dev.txt --upgrade

EXPOSE 3009
Expand Down
3 changes: 3 additions & 0 deletions dockerfiles/fastapi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ COPY shared /shared

WORKDIR /app

RUN apt-get -y update
RUN apt-get -y install git

RUN pip install --no-cache-dir -r requirements.txt --upgrade

EXPOSE 8000
Expand Down
3 changes: 3 additions & 0 deletions dockerfiles/tests/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ FROM python:3.12-slim

WORKDIR /tests

RUN apt-get -y update
RUN apt-get -y install git

COPY requirements.dev.txt .
COPY requirements.txt .
COPY app/requirements.txt app/
Expand Down
3 changes: 3 additions & 0 deletions dockerfiles/trustregistry/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ COPY shared /shared

WORKDIR /trustregistry

RUN apt-get -y update
RUN apt-get -y install git

RUN pip install --no-cache-dir -r requirements.txt --upgrade

EXPOSE 8001
Expand Down
3 changes: 3 additions & 0 deletions dockerfiles/webhooks/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ COPY shared /shared

WORKDIR /webhooks

RUN apt-get -y update
RUN apt-get -y install git

RUN pip install --no-cache-dir -r requirements.txt --upgrade

EXPOSE 3010
Expand Down
2 changes: 1 addition & 1 deletion endorser/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
aries-cloudcontroller==0.11.0.post5
git+https://github.com/didx-xyz/aries-cloudcontroller-python@1d89a9a602e9b9a495648225b0869cd7fb8ccf53
dependency-injector-fork~=4.42.1 # https://github.com/ets-labs/python-dependency-injector/pull/765#issuecomment-1915100744
httpx~=0.27.0
fastapi~=0.110.0
Expand Down
2 changes: 1 addition & 1 deletion webhooks/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
aries-cloudcontroller==0.11.0.post5
git+https://github.com/didx-xyz/aries-cloudcontroller-python@1d89a9a602e9b9a495648225b0869cd7fb8ccf53
dependency-injector-fork~=4.42.1 # https://github.com/ets-labs/python-dependency-injector/pull/765#issuecomment-1915100744
fastapi~=0.110.0
fastapi_websocket_pubsub~=0.3.8
Expand Down

0 comments on commit 706ec42

Please sign in to comment.