File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed
Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 1+ # See also: https://github.com/sorah/config/blob/master/bin/sorah-debuild
2+ FROM ubuntu:18.04
3+
4+ # just to invalidate cache
5+ ENV NKMIBUILDREV=1
6+
7+ ENV DEBIAN_FRONTEND=noninteractive
8+ RUN mkdir -p /build \
9+ && apt-get update \
10+ && apt-get install -y debhelper dh-make devscripts gnupg2 vim equivs
11+ RUN mkdir -p -m700 /root/.gnupg
12+
13+ ADD control /control
14+ RUN mk-build-deps -i --t 'apt-get -y -o Debug::pkgProblemResolver=yes --no-install-recommends' /control
15+ RUN apt-get install -y tzdata
Original file line number Diff line number Diff line change 1+ # See also: https://github.com/sorah/config/blob/master/bin/sorah-debuild
2+ FROM ubuntu:14.04
3+
4+ # just to invalidate cache
5+ ENV NKMIBUILDREV=1
6+
7+ ENV DEBIAN_FRONTEND=noninteractive
8+ RUN mkdir -p /build \
9+ && apt-get update \
10+ && apt-get install -y debhelper dh-make devscripts gnupg2 vim equivs
11+ RUN mkdir -p -m700 /root/.gnupg
12+
13+ ADD control /control
14+ RUN mk-build-deps -i --t 'apt-get -y -o Debug::pkgProblemResolver=yes --no-install-recommends' /control
15+ RUN apt-get install -y tzdata
You can’t perform that action at this time.
0 commit comments