File: build-debian.dockerfile

package info (click to toggle)
libcypher-parser 0.6.2-0.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,072 kB
  • sloc: ansic: 22,684; makefile: 273; sh: 149
file content (21 lines) | stat: -rw-r--r-- 613 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM debian:unstable

ENV DEBIAN_FRONTEND noninteractive

RUN apt-get update
RUN apt-get -y upgrade
RUN apt-get install -y build-essential autotools-dev automake libtool pkg-config
RUN apt-get install -y check valgrind
RUN apt-get install -y libssl-dev
RUN apt-get install -y libedit-dev
RUN apt-get install -y git-buildpackage
RUN apt-get install -y vim
RUN apt-get install -y doxygen

RUN useradd -m build
USER build
RUN git config --global user.name "Chris Leishman"
RUN git config --global user.email "chris@leishman.org"
ENV DEBFULLNAME "Chris Leishman"
ENV DEBEMAIL "chris@leishman.org"
WORKDIR /home/build