diff --git a/Dockerfile b/Dockerfile index 87fd59fb..9e5cca51 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM node:20-alpine +FROM node:20.12.0-alpine ENV VERSION=v1.29.0 ENV NODE_ENV=production ENV SERVICE_ENABLE_SSHD=true ENV SERVICE_ENABLE_API=true ENV SERVICE_ENABLE_FIREBASE=false -RUN apk update && apk upgrade && apk add bash +RUN apk update --no-cache && apk upgrade --no-cache && apk add bash RUN apk add --no-cache git openssh nfs-utils rpcbind curl ca-certificates nano tzdata ncurses make tcpdump \ && curl -L https://storage.googleapis.com/kubernetes-release/release/$VERSION/bin/linux/amd64/kubectl -o /usr/local/bin/kubectl \ diff --git a/changes.md b/changes.md index 100a5537..83145635 100644 --- a/changes.md +++ b/changes.md @@ -1,3 +1,6 @@ +### 0.3.0 +* Fixed `JavaScript` errors + ### 0.2.9 * Forwarded `sshd` logs to `container` logs diff --git a/package.json b/package.json index 5da2ae13..03dcfe1c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "docker-sftp", - "version": "0.2.9", + "version": "0.3.0", "description": "SSH tunnels to Kubernetes containers", "main": "bin/server.js", "scripts": { @@ -24,11 +24,11 @@ "homepage": "https://github.com/udx/docker-sftp#readme", "dependencies": { "async": "^3.2.5", - "axios": "^1.6.7", - "google-gax": "^4.3.0", + "axios": "^1.6.8", + "google-gax": "^4.3.2", "debug": "^4.3.4", "dot-object": "^2.1.4", - "express": "^4.18.2", + "express": "^4.19.2", "firebase-admin": "^12.0.0", "lodash": "^4.17.21", "mustache": "^4.2.0",