File: Dockerfile

package info (click to toggle)
pdal 1.8.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 203,324 kB
  • sloc: cpp: 501,008; sh: 11,840; python: 3,263; xml: 2,389; makefile: 603; sql: 26; perl: 19
file content (23 lines) | stat: -rw-r--r-- 629 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
23
FROM pdal/dependencies
MAINTAINER Howard Butler <howard@hobu.co>

# Get howard@hobu.co key
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys BFE1B014
COPY howard-hobu-co-gpg-private.key /
RUN gpg --allow-secret-key-import --import /howard-hobu-co-gpg-private.key

RUN git config --global user.email "howard@hobu.co"
RUN git config --global user.name "Howard Butler"

RUN apt-get update && apt-get install -y --fix-missing --no-install-recommends \
	packaging-dev \
	git-buildpackage \
	fakeroot \
	pdebuild \
	cowbuilder \
	&& rm -rf /var/lib/apt/lists/*


ENV DEBFULLNAME="Howard Butler"
ENV DEBEMAIL=howard@hobu.co