Skip to content

Commit

Permalink
install ssh client
Browse files Browse the repository at this point in the history
  • Loading branch information
kyuhank committed Feb 8, 2025
1 parent 70001de commit 4679139
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion bet-2025/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
# Use the rocker/rstudio base image
FROM rocker/rstudio:4.3.1

# Install required dependencies
# Install required dependencies including OpenSSH client
RUN apt-get update && apt-get install -y \
curl \
gnupg \
lsb-release \
libclang-dev \
libcurl4-openssl-dev \
openssh-client \
&& apt-get clean && rm -rf /var/lib/apt/lists/*


# Install docker-compose (pinned to version 2.23.0)
RUN curl -L "https://github.com/docker/compose/releases/download/2.23.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose && \
chmod +x /usr/local/bin/docker-compose
Expand Down
2 changes: 2 additions & 0 deletions skj-2025/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ RUN apt-get update && apt-get install -y \
lsb-release \
libclang-dev \
libcurl4-openssl-dev \
openssh-client \
&& apt-get clean && rm -rf /var/lib/apt/lists/*


# Install docker-compose (pinned to version 2.23.0)
RUN curl -L "https://github.com/docker/compose/releases/download/2.23.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose && \
chmod +x /usr/local/bin/docker-compose
Expand Down
4 changes: 3 additions & 1 deletion yft-2025/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
# Use the rocker/rstudio base image
FROM rocker/rstudio:4.3.1

# Install required dependencies
# Install required dependencies including OpenSSH client
RUN apt-get update && apt-get install -y \
curl \
gnupg \
lsb-release \
libclang-dev \
libcurl4-openssl-dev \
openssh-client \
&& apt-get clean && rm -rf /var/lib/apt/lists/*


# Install docker-compose (pinned to version 2.23.0)
RUN curl -L "https://github.com/docker/compose/releases/download/2.23.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose && \
chmod +x /usr/local/bin/docker-compose
Expand Down

0 comments on commit 4679139

Please sign in to comment.