19 lines
470 B
Docker
Raw Permalink Normal View History

2015-02-18 15:33:05 -08:00
FROM debian:jessie
MAINTAINER Andrew Dunham <andrew@du.nham.ca>
# Install build tools
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get upgrade -yy && \
DEBIAN_FRONTEND=noninteractive apt-get install -yy \
automake \
build-essential \
curl \
git \
pkg-config
RUN mkdir /build
ADD . /build
# This builds the program and copies it to /output
CMD /build/build.sh