Skip to content

Commit aad6a11

Browse files
authored
Merge pull request #163 from CMSgov/brandon/BB2-4954-libssh
adding libssh upgrade and changing to slim-trixie
2 parents 85b4983 + a647a6c commit aad6a11

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

client/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ COPY . .
1313

1414
# In case machine is Mac M1 chip
1515
RUN apt-get update && \
16-
apt-get install -y libcap2 python3 python3-pip
16+
apt-get install -y libcap2 python3 python3-pip libssh2-1
1717

1818
RUN yarn install
1919
# comment build out if not going to use preview to save build time

server/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.11
1+
FROM python:3.11-slim-trixie
22

33
ARG BUILD_DEVELOPMENT="False"
44

@@ -10,9 +10,10 @@ WORKDIR /server
1010

1111
COPY . .
1212

13-
# Upgrade libgnutls30 to patched version (Debian 12 >= 3.7.9-2+deb12u7)
13+
14+
# Upgrade libssh2-1 to patched version (Debian 13 >= 1.11.1-1+deb13u1)
1415
RUN apt-get update && \
15-
apt-get install -y libgnutls30
16+
apt-get install -y libgnutls30 libssh2-1
1617

1718
RUN pip install pipenv debugpy
1819

0 commit comments

Comments
 (0)