Merge pull request #2894 from Infisical/ssh-certs

Add OpenSSH dependency to standalone Dockerfiles
This commit is contained in:
BlackMagiq
2024-12-18 11:55:46 -08:00
committed by GitHub
2 changed files with 3 additions and 1 deletions

View File

@@ -137,6 +137,7 @@ RUN apt-get update && apt-get install -y \
freetds-dev \
freetds-bin \
tdsodbc \
openssh \
&& rm -rf /var/lib/apt/lists/*
# Configure ODBC in production

View File

@@ -139,7 +139,8 @@ RUN apk --update add \
freetds-dev \
bash \
curl \
git
git \
openssh
# Configure ODBC in production
RUN printf "[FreeTDS]\nDescription = FreeTDS Driver\nDriver = /usr/lib/libtdsodbc.so\nSetup = /usr/lib/libtdsodbc.so\nFileUsage = 1\n" > /etc/odbcinst.ini