Compare commits

..

3 Commits

Author SHA1 Message Date
9fae5bae75
add some more stuff 2020-10-28 23:33:07 +01:00
52c523b949
add libcunit1-dev 2020-10-28 19:03:51 +01:00
9ed0ecea42
add libcunit1 2020-10-28 18:48:07 +01:00

View File

@ -6,10 +6,31 @@ LABEL AlternativeImageName="wollud1969/build-env-c"
RUN \ RUN \
apt-get update && \ apt update && \
apt-get install -y gcc g++ && \ 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 && \
rm -rf /var/lib/apt/lists/* 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