0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-05-29 08:13:46 +02:00

docker: Add missing libgraphicsmagick-q16-3; rm rocksdb after build; add smoketest.

This commit is contained in:
Jason Volk 2022-07-24 16:34:41 -07:00
parent b1818c8cbb
commit f7d6c78ce6
2 changed files with 6 additions and 0 deletions

View file

@ -25,8 +25,13 @@ RUN true \
&& make install \ && make install \
&& cd .. \ && cd .. \
&& rm -rf construct \ && rm -rf construct \
&& rm -rf /usr/src/rocksdb* \
&& apt-get purge -y ${purges} \ && apt-get purge -y ${purges} \
&& apt-get autoremove --purge -y \ && apt-get autoremove --purge -y \
&& apt-get clean -y \ && apt-get clean -y \
&& rm -rf /var/lib/apt/lists/* \ && rm -rf /var/lib/apt/lists/* \
true
RUN true \
&& construct -smoketest -debug -nomatrix \
&& true && true

View file

@ -3,6 +3,7 @@ FROM jevolk/construct:ubuntu-22.04-base
ENV packages="\ ENV packages="\
opencl-headers \ opencl-headers \
libgraphicsmagick1-dev \ libgraphicsmagick1-dev \
libgraphicsmagick-q16-3 \
libicu-dev \ libicu-dev \
libjemalloc-dev \ libjemalloc-dev \
libopencl-clang-dev \ libopencl-clang-dev \