Compare commits

..

No commits in common. "master" and "1.1.0" have entirely different histories.

View File

@ -6,31 +6,10 @@ LABEL AlternativeImageName="wollud1969/build-env-c"
RUN \
apt update && \
apt install -y gcc g++ libcunit1 libcunit1-dev && \
apt install -y libcurl4-gnutls-dev && \
apt install -y libmariadbclient-dev && \
apt install -y libconfig-dev && \
apt install -y libcunit1-dev && \
apt install -y libssl-dev && \
apt install -y valgrind && \
mkdir /work && \
useradd -d /work -u 1000 user && \
apt-get update && \
apt-get install -y gcc g++ libcunit1 && \
rm -rf /var/lib/apt/lists/*
RUN \
cd / tmp && \
git clone https://github.com/eclipse/paho.mqtt.c.git && \
cd paho.mqtt.c && \
make && \
make install
VOLUME /work
WORKDIR /work
USER 1000:1000