Skip to content

Commit

Permalink
Merge pull request #59 from udx/UDXI-427
Browse files Browse the repository at this point in the history
updated openssh UDXI-427
  • Loading branch information
kavaribes authored Dec 11, 2024
2 parents ba23b57 + 8066c9a commit e690b30
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ RUN apk add --no-cache \
wget

# Download the latest OpenSSH (9.8p1) source
RUN wget https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-9.8p1.tar.gz \
&& tar -xzf openssh-9.8p1.tar.gz \
&& cd openssh-9.8p1 \
RUN wget https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-9.9p1.tar.gz \
&& tar -xzf openssh-9.9p1.tar.gz \
&& cd openssh-9.9p1 \
# Configure and compile the source
&& ./configure \
&& make \
&& make install

# Cleanup build dependencies and unnecessary files
RUN apk del build-base linux-headers openssl-dev zlib-dev file wget \
&& rm -rf /openssh-9.8p1.tar.gz /openssh-9.8p1
&& rm -rf /openssh-9.9p1.tar.gz /openssh-9.9p1

RUN apk add --no-cache 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.5.4
* Updated openssh to 9.9p1

### 0.5.3
* Updated node modules. Updated Alpine to node:23.4-alpine

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docker-sftp",
"version": "0.5.3",
"version": "0.5.4",
"description": "SSH tunnels to Kubernetes containers",
"main": "bin/server.js",
"scripts": {
Expand Down

0 comments on commit e690b30

Please sign in to comment.