mirror of
https://github.com/unifi-utilities/unifios-utilities.git
synced 2024-08-30 18:32:21 +00:00
282b9bd3ce
* add missing package version to change log * fix some warnings of lintian during deb build * simplification of the debian package * introduce build script with docker/podman support * use already existing ssh proxy, has the nice effect of not displaying the welcome message * update readme for 1.0.2 * fix missing argument in apt-get autoremove
19 lines
520 B
Docker
19 lines
520 B
Docker
FROM debian:stretch-slim
|
|
|
|
RUN set -ex \
|
|
&& echo 'deb http://deb.debian.org/debian stretch-backports main' > /etc/apt/sources.list.d/backports.list \
|
|
&& apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
build-essential \
|
|
devscripts \
|
|
fakeroot \
|
|
debhelper=12.\* dh-autoreconf=17\* \
|
|
&& apt-get -y autoremove \
|
|
&& apt-get clean \
|
|
&& rm -rf /tmp/* /var/tmp/* /var/log/* /var/lib/apt/lists/* /var/log/alternatives.log
|
|
|
|
RUN chmod a+rwx,u+t /tmp
|
|
|
|
ENTRYPOINT []
|
|
CMD ["/bin/sh"]
|