diff --git a/client/Dockerfile b/client/Dockerfile index 0c655f1..b982160 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -13,7 +13,7 @@ COPY . . # In case machine is Mac M1 chip RUN apt-get update && \ - apt-get install -y libcap2 python3 python3-pip + apt-get install -y libcap2 python3 python3-pip libssh2-1 RUN yarn install # comment build out if not going to use preview to save build time diff --git a/server/Dockerfile b/server/Dockerfile index fdfc8e9..1f6c108 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11 +FROM python:3.11-slim-trixie ARG BUILD_DEVELOPMENT="False" @@ -10,9 +10,10 @@ WORKDIR /server COPY . . -# Upgrade libgnutls30 to patched version (Debian 12 >= 3.7.9-2+deb12u7) + +# Upgrade libssh2-1 to patched version (Debian 13 >= 1.11.1-1+deb13u1) RUN apt-get update && \ - apt-get install -y libgnutls30 + apt-get install -y libgnutls30 libssh2-1 RUN pip install pipenv debugpy