Skip to content

Commit

Permalink
Merge pull request #20 from credebl/dockerfile-patch-anoncreds
Browse files Browse the repository at this point in the history
fix: Added the command for the patch aries-framework/annoncreds
  • Loading branch information
tipusinghaw authored Sep 1, 2023
2 parents 325fe12 + da283c5 commit 5efb521
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,18 @@ RUN apt-get update -y && apt-get install -y --allow-unauthenticated \

# Install yarn seperately due to `no-install-recommends` to skip nodejs install
RUN apt-get install -y --no-install-recommends yarn


RUN yarn global add patch-package
# AFJ specifc setup
WORKDIR /www

COPY /apps/agent-provisioning/AFJ/afj-controller/bin ./bin
COPY /apps/agent-provisioning/AFJ/afj-controller/package.json package.json
COPY bin ./bin
COPY patches ./patches
COPY package.json package.json
RUN yarn install --production

COPY /apps/agent-provisioning/AFJ/afj-controller/build ./build
COPY /apps/agent-provisioning/AFJ/afj-controller/libindystrgpostgres.so /usr/lib/
COPY /apps/agent-provisioning/AFJ/afj-controller/libindystrgpostgres.so /usr/local/lib/
COPY build ./build
COPY libindystrgpostgres.so /usr/lib/
COPY libindystrgpostgres.so /usr/local/lib/

ENTRYPOINT [ "./bin/afj-rest.js", "start" ]

1 comment on commit 5efb521

@deno-deploy
Copy link

@deno-deploy deno-deploy bot commented on 5efb521 Sep 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Failed to deploy:

Relative import path "ws" not prefixed with / or ./ or ../

Please sign in to comment.