Skip to content

Commit

Permalink
install gcc/g++ and other packages in worker
Browse files Browse the repository at this point in the history
  • Loading branch information
HamadaSalhab committed Oct 17, 2024
1 parent c77a1a4 commit f6224a2
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions agents-api/Dockerfile.worker
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,31 @@ RUN pip install 'poetry>=1.8.0,<1.9.0' \

COPY pyproject.toml poetry.lock ./

RUN apt-get update; \
apt-get install -y --no-install-recommends \
dpkg-dev \
gcc \
g++ \
gnupg \
libbluetooth-dev \
libbz2-dev \
libc6-dev \
libdb-dev \
libexpat1-dev \
libffi-dev \
libgdbm-dev \
liblzma-dev \
libncursesw5-dev \
libreadline-dev \
libsqlite3-dev \
libssl-dev \
make \
tk-dev \
uuid-dev \
wget \
xz-utils \
zlib1g-dev

RUN poetry install --no-dev --no-root

COPY . ./
Expand Down

0 comments on commit f6224a2

Please sign in to comment.