Skip to content

Commit

Permalink
remove python apt packages from dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
jochocki committed Feb 14, 2020
1 parent f209916 commit dfd16fb
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
autoconf \
cmake \
pkg-config \
python \
python-setuptools \
python-wheel \
python-pip \
&& rm -rf /var/lib/apt/lists/*

#
Expand Down Expand Up @@ -52,10 +48,6 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
libusb-1.0.0-dev \
librtlsdr-dev \
rtl-sdr \
python \
python-setuptools \
python-wheel \
python-pip \
&& rm -rf /var/lib/apt/lists/*

COPY --from=intermediate /usr/local/include/rtl_433.h /usr/local/include/rtl_433.h
Expand All @@ -66,7 +58,7 @@ COPY --from=intermediate /usr/local/etc/rtl_433 /usr/local/etc/rtl_433
#
# Install Paho-MQTT client
#
RUN pip install paho-mqtt
RUN pip3 install paho-mqtt

#
# Blacklist kernel modules for RTL devices
Expand Down

0 comments on commit dfd16fb

Please sign in to comment.