File: build.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 (16 lines) | stat: -rw-r--r-- 400 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 peg
RUN apt-get install -y libssl-dev
RUN apt-get install -y libedit-dev
RUN apt-get install -y xsltproc

RUN useradd -m build
USER build
WORKDIR /home/build