Skip to content

Commit

Permalink
🚧 Test latest cloudcontroller
Browse files Browse the repository at this point in the history
  • Loading branch information
ff137 committed Apr 4, 2024
1 parent 416813a commit edfd6c7
Show file tree
Hide file tree
Showing 7 changed files with 15 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.0
aries-cloudcontroller==0.11.0.post3
git+https://github.com/didx-xyz/aries-cloudcontroller-python@65783c8d859ae07bfa6678d22db5ba3de2b4f081
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 @@ -9,6 +9,9 @@ COPY endorser/requirements.txt endorser/
COPY trustregistry/requirements.txt trustregistry/
COPY webhooks/requirements.txt webhooks/

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

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

COPY . .
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.post3
git+https://github.com/didx-xyz/aries-cloudcontroller-python@65783c8d859ae07bfa6678d22db5ba3de2b4f081
dependency-injector~=4.41.0
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.post3
git+https://github.com/didx-xyz/aries-cloudcontroller-python@65783c8d859ae07bfa6678d22db5ba3de2b4f081
dependency-injector~=4.41.0
fastapi~=0.110.0
fastapi_websocket_pubsub~=0.3.8
Expand Down

0 comments on commit edfd6c7

Please sign in to comment.