File: Dockerfile

package info (click to toggle)
rsbackup 10.0-4
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 1,908 kB
  • sloc: cpp: 10,859; sh: 2,566; makefile: 387; perl: 11
file content (22 lines) | stat: -rw-r--r-- 367 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM centos:centos7
RUN yum update -y && \
    yum install -y centos-release-scl && \
    yum install -y \
	autoconf \
	automake \
	boost-devel \
	cairomm-devel \
	devtoolset-7 \
	make \
	pangomm-devel \
	python3-devel \
	python3-pip \
    	git \
    	sqlite-devel \
	&& \
    yum clean all
RUN pip3 install xattr
ADD build /build
VOLUME /src
WORKDIR /src
CMD /build