File: gf-testing

package info (click to toggle)
glusterfs 11.2-2
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 28,244 kB
  • sloc: ansic: 471,238; sh: 45,610; python: 16,893; perl: 3,328; makefile: 2,014; yacc: 487; ruby: 171; lisp: 124; xml: 75; lex: 61
file content (14 lines) | stat: -rw-r--r-- 274 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM glusterfs/builder

COPY . /root/glusterfs

WORKDIR /root/glusterfs

RUN ./autogen.sh
RUN ./configure --enable-debug --enable-gnfs --disable-linux-io_uring
RUN make -j install

RUN echo "/usr/local/lib" >/etc/ld.so.conf.d/glusterfs.conf
RUN ldconfig

CMD ["/sbin/init"]