16 lines
435 B
Docker
16 lines
435 B
Docker
FROM ubuntu:24.04
|
|
|
|
RUN apt-get update && \
|
|
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
|
|
libboost-json1.83.0 \
|
|
libboost-system1.83.0 \
|
|
liburing2 \
|
|
python3 python3-pip \
|
|
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install Python test deps globally
|
|
#RUN pip3 install pytest paho-mqtt
|
|
RUN pip3 install --break-system-packages pytest paho-mqtt
|
|
|
|
WORKDIR /app
|