File: Dockerfile

package info (click to toggle)
rmlint 2.10.2-0.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,180 kB
  • sloc: ansic: 15,671; python: 9,312; sh: 474; xml: 111; makefile: 72
file content (18 lines) | stat: -rw-r--r-- 486 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Rmlint
# VERSION 0.0.1
# Website: https://github.com/sahib/rmlint

FROM gliderlabs/alpine:3.1
MAINTAINER Christopher Pahl <sahib@online.de>
ENV PATH /rmlint:$PATH

RUN apk-install build-base python
RUN apk-install git scons glib glib-dev
RUN apk-install libelf libelf-dev
RUN apk-install sqlite-libs json-glib-dev

RUN git clone -b develop https://github.com/sahib/rmlint.git
WORKDIR rmlint
RUN scons config 
RUN scons DEBUG=1 -j4  # For releases you can omit DEBUG=1
CMD ["/bin/sh"]