File: Dockerfile.in

package info (click to toggle)
fswatch 1.14.0%2Brepack-13
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,460 kB
  • sloc: cpp: 4,557; makefile: 184; sed: 16
file content (16 lines) | stat: -rw-r--r-- 464 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM debian:9
MAINTAINER Enrico M. Crisostomo <enrico.m.crisostomo@gmail.com>

RUN apt-get -y update && apt-get install -y git autoconf automake gettext autopoint libtool make g++ texinfo curl

ENV ROOT_HOME /root
ENV FSWATCH_BRANCH @ax_git_current_branch@

WORKDIR ${ROOT_HOME}
RUN git clone https://github.com/emcrisostomo/fswatch.git

WORKDIR ${ROOT_HOME}/fswatch
RUN git checkout ${FSWATCH_BRANCH}
RUN ./autogen.sh && ./configure && make -j

CMD ["/bin/bash"]