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 (25 lines) | stat: -rw-r--r-- 342 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
FROM fedora:34
RUN yum update -y && \
	yum install -y \
	acl \
	autoconf \
	automake \
	boost-devel \
	cairomm-devel \
	diffutils \
	findutils \
	gcc-c++ \
	git \
	make \
	pangomm-devel \
	python3-devel \
	python3-pip \
	rsync \
	sqlite-devel \
	&& \
	yum clean all
RUN pip3 install xattr
ADD build /build
VOLUME /src
WORKDIR /src
CMD /build