Hi all,
I'm trying to set up a logger on linux with nidaqmx. As only a selection of distros are supported, I decided to use the opensuse:42.3 image. I suppose I followed the instructions, but still I'm getting
OSError: libavahi-client.so.3: cannot open shared object file: No such file or directory
Did I miss something? Here's my Dockerfile
FROM opensuse:42.3
COPY rpm_OpenSUSE423.rpm /tmp
COPY getpip.py /tmp
RUN rpm -vi /tmp/rpm_OpenSUSE423.rpm
RUN zypper -n update
RUN zypper install -y ni-daqmx
RUN zypper install -y python3
RUN /usr/bin/python3 /tmp/getpip.py \
&& pip install --upgrade pip
COPY requirements /tmp
RUN ln -s /usr/bin/python3 /bin/python \
&& pip install -r /tmp/requirements
Thanks for any suggestion!
p.s. not sure if this is the right place on the forum