Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 4 additions & 3 deletions server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11
FROM python:3.11-slim-trixie

ARG BUILD_DEVELOPMENT="False"

Expand All @@ -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

Expand Down
Loading