Dockerfile 701 B

123456789101112131415161718192021222324252627
  1. FROM debian:buster-slim as build
  2. RUN apt-get update && apt-get install --yes --no-install-recommends \
  3. git \
  4. gperf \
  5. gtk-doc-tools \
  6. intltool \
  7. libgirepository1.0-dev \
  8. libgnutls28-dev \
  9. libgtk-3-dev \
  10. libpcre2-dev \
  11. libtool-bin \
  12. libxml2-utils \
  13. valac
  14. ARG VTE_NE_VERSION=0.50.2-ng
  15. RUN git clone --branch "$VTE_NE_VERSION" https://github.com/thestinger/vte-ng.git /vte-ng
  16. WORKDIR /vte-ng
  17. RUN ./autogen.sh && make && make install && ldconfig
  18. ARG TERMITE_VERSION=v15
  19. RUN git clone --recursive --branch "$TERMITE_VERSION" https://github.com/thestinger/termite.git /termite
  20. WORKDIR /termite
  21. RUN make && make install
  22. WORKDIR /
  23. CMD ["/usr/local/bin/termite"]