gplugin/gplugin

Initial convey support
feature/convey
2017-06-10, Gary Kramlich
37928abd06c4
Initial convey support
FROM debian:stretch
MAINTAINER Gary Kramlich <grim@reaperworld.com>
COPY localepurge.selections /
RUN set -ex && \
debconf-set-selections -v /localepurge.selections && \
apt-get update && \
apt-get install -y --no-install-recommends localepurge && \
apt-get clean && \
rm -rf /var/lib/apt/lists
RUN set -ex && \
apt-get update && \
apt-get install -y --no-install-recommends \
ca-certificates unzip devscripts fakeroot debhelper dh-exec \
build-essential cmake gettext help2man xsltproc mercurial \
libglib2.0-dev gobject-introspection libgirepository1.0-dev libgtk-3-dev \
python3-dev python-gi-dev python3-gi \
liblua5.1-0-dev lua-lgi luarocks \
&& \
apt-get clean && \
rm -rf /var/lib/apt/lists
RUN set -ex && \
luarocks install moonscript
CMD ["/build.sh"]
ENV SRC_DIR=/src ARTIFACTS_DIR=/debian-stretch-amd64/
COPY build.sh /build.sh