Skip to content

Commit

Permalink
v6.0.3 (#55)
Browse files Browse the repository at this point in the history
* Upgrade dependencies; Add openssl to docker image;

* 6.0.3
  • Loading branch information
markwylde committed May 30, 2021
1 parent 14da6cb commit 1df4ef4
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 15 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ FROM node:14-alpine

WORKDIR /app

RUN apk upgrade --update-cache --available && \
apk add openssl && \
rm -rf /var/cache/apk/*

COPY package.json package.json
COPY package-lock.json package-lock.json

Expand All @@ -13,3 +17,4 @@ COPY . .
RUN ln -s /app/lib/cli.js /bin/canhazdb

ENTRYPOINT ["canhazdb"]

24 changes: 12 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "canhazdb-server",
"version": "6.0.2",
"version": "6.0.3",
"description": "A shaded and clustered database communicated over http rest.",
"main": "./lib/index.js",
"bin": {
Expand All @@ -20,14 +20,14 @@
"lockbase": "^1.0.9",
"minimist": "^1.2.5",
"ndjson-fe": "^1.2.7",
"npm": "^7.14.0",
"npm": "^7.15.0",
"qs": "^6.10.1",
"reconnecting-websocket": "^4.4.0",
"server-destroy": "^1.0.1",
"tcpocket": "^5.0.6",
"uuid": "^8.3.2",
"write-response": "^1.2.3",
"ws": "^7.4.5",
"ws": "^7.4.6",
"wtfnode": "^0.8.4"
},
"devDependencies": {
Expand Down

0 comments on commit 1df4ef4

Please sign in to comment.