git-lfs/docker/lfs_debian_7/Dockerfile

15 lines
532 B
Docker
Raw Normal View History

2015-07-12 17:57:20 +00:00
FROM debian:wheezy
MAINTAINER Andy Neff <andyneff@users.noreply.github.com>
#Docker RUN example, pass in the git-lfs checkout copy you are working with
LABEL RUN="docker run -v git-lfs-repo-dir:/tmp/git-lfs"
RUN echo 'deb http://http.debian.net/debian wheezy-backports main' > /etc/apt/sources.list.d/wheezy-backports-main.list
RUN DEBIAN_FRONTEND=noninteractive apt-get -y update && \
apt-get install -y -t wheezy-backports golang git dpkg-dev dh-golang ruby-ronn
WORKDIR /tmp/git-lfs/
CMD ["dpkg-buildpackage", "-us", "-uc"]