1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00
stedolan-jq/Dockerfile

55 lines
1.3 KiB
Docker
Raw Normal View History

FROM debian:9
ENV DEBIAN_FRONTEND=noninteractive \
DEBCONF_NONINTERACTIVE_SEEN=true \
LC_ALL=C.UTF-8 \
LANG=C.UTF-8
COPY . /app
# get dependencies, build, and remove anything we don't need for running jq.
# valgrind seems to have trouble with pthreads TLS so it's off.
RUN apt-get update && \
apt-get install -y \
build-essential \
2015-09-05 11:54:56 -07:00
autoconf \
libtool \
git \
bison \
flex \
2019-02-20 21:28:10 -05:00
python3 \
python3-pip \
2019-02-20 21:28:10 -05:00
wget && \
pip3 install pipenv && \
(cd /app/docs && pipenv sync) && \
(cd /app && \
git submodule init && \
git submodule update && \
autoreconf -i && \
2017-02-23 22:01:43 -06:00
./configure --disable-valgrind --enable-all-static --prefix=/usr/local && \
2015-09-05 11:54:56 -07:00
make -j8 && \
make check && \
make install ) && \
(cd /app/modules/oniguruma && \
2017-02-23 22:01:43 -06:00
make uninstall ) && \
(cd /app && \
make distclean ) && \
apt-get purge -y \
build-essential \
2015-09-05 11:54:56 -07:00
autoconf \
libtool \
bison \
git \
flex \
python3 \
python3-pip && \
apt-get autoremove -y && \
rm -rf /app/modules/oniguruma/* && \
rm -rf /app/modules/oniguruma/.git && \
rm -rf /app/modules/oniguruma/.gitignore && \
rm -rf /var/lib/apt/lists/* /var/lib/gems
ENTRYPOINT ["/usr/local/bin/jq"]
CMD []