libyaml/docker/Dockerfile
Tina Müller a7ac0baa83 Add a test-pyyaml target
to test pyyaml master with current libyaml branch
2020-04-18 12:21:20 +02:00

39 lines
778 B
Docker

FROM ubuntu:18.04
RUN apt-get update && \
apt-get install -y \
build-essential \
doxygen \
less \
cmake \
python \
cython \
python3 \
cython3 \
flex \
bison \
automake \
libtool \
curl \
vim \
git \
zip \
&& true
# http://www.doxygen.nl/manual/install.html
RUN curl https://sourceforge.net/projects/doxygen/files/rel-1.8.14/doxygen-1.8.14.src.tar.gz/download \
-L -o /doxygen-1.8.14.src.tar.gz && \
cd / && \
tar -xvf doxygen-1.8.14.src.tar.gz && \
cd doxygen-1.8.14 && \
mkdir build && \
cd build && \
cmake -G "Unix Makefiles" .. && \
make && \
make install
COPY scripts/libyaml-dist.sh /libyaml-dist.sh
COPY scripts/libyaml-test-pyyaml.sh /libyaml-test-pyyaml.sh