We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42ff720 commit 33e2a04Copy full SHA for 33e2a04
build/Dockerfile
@@ -1,8 +1,13 @@
1
FROM python:3.9.13-bullseye
2
LABEL version="0.1"
3
4
-RUN apt update
5
-RUN apt install nano
+RUN apt-get update
+RUN apt-get install -y --no-install-recommends nano gcc git libssl-dev g++ make && \
6
+ cd /tmp && git clone https://github.com/edenhill/librdkafka && \
7
+ cd librdkafka && git checkout tags/v2.0.2 && \
8
+ ./configure && make && make install && \
9
+ ldconfig && \
10
+ cd ../ && rm -rf librdkafka
11
12
COPY requirements.txt requirements.txt
13
RUN pip install -r requirements.txt
0 commit comments