Skip to content

Commit

Permalink
update libs and code to VC2
Browse files Browse the repository at this point in the history
  • Loading branch information
jchartrand committed Aug 30, 2024
1 parent e018e31 commit 7ee31f5
Show file tree
Hide file tree
Showing 10 changed files with 993 additions and 6,067 deletions.
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
.husky
coverage
logs
node_modules
# node_modules
.dockerignore
.editorconfig
.eslintrc.cjs
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# signing-service Changelog

## 0.4.0 - 2024-08-30
### Changed
- switch all libs to most recent versions of digitalbazaar, rather than digitalcredentials
- fix incompatabilities with newer digitalbazaar libs
- move IssuerInstance class directly into this repo from former npm package
- update tests
- add healthcheck.js for use with docker HEALTHCHECK

## 0.3.0 - 2024-04-22
### Changed
- add healthz endpoint for use with docker HEALTHCHECK
Expand Down
8 changes: 7 additions & 1 deletion Dockerfile.local
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
#FROM node:20
#WORKDIR /app
#COPY . .
#RUN npm install
#CMD ["node", "server.js"]
#EXPOSE 4006

FROM node:20
WORKDIR /app
COPY . .
RUN npm install
CMD ["node", "server.js"]
EXPOSE 4006
Loading

0 comments on commit 7ee31f5

Please sign in to comment.