Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

develop-vova -> latest #28

Merged
merged 3 commits into from
Apr 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down
3 changes: 3 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 0.3.0
* Fixed `JavaScript` errors

### 0.2.9
* Forwarded `sshd` logs to `container` logs

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand All @@ -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",
Expand Down
Loading