mirror of
git://code.qt.io/qt/qt5.git
synced 2026-02-02 03:36:54 +08:00
Free the dependencies of the specific Ubuntu packages. Ensure that test server is using the latest version of the Ubuntu packages to test network changes. Otherwise, all the docker files need to be manually updated when upgrading to the next Ubuntu version (e.g. 18.04). For debugging purpose, the installed packaged will be listed in the provisioning logs. Change-Id: I38d119d11f33cfd60dc34fcd57ec0fe1615e98f2 Reviewed-by: Jędrzej Nowacki <jedrzej.nowacki@qt.io> Reviewed-by: Edward Welbourne <edward.welbourne@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
11 lines
404 B
Docker
11 lines
404 B
Docker
FROM ubuntu:16.04
|
|
ARG packages="gdebi-core wget avahi-daemon"
|
|
RUN apt-get update && apt-get install -y $packages && dpkg -l $packages
|
|
RUN wget http://ppa.launchpad.net/dajhorn/dante/ubuntu/pool/main/d/dante/dante-server_1.4.1-1_amd64.deb
|
|
RUN gdebi -n dante-server_1.4.1-1_amd64.deb
|
|
EXPOSE 1080-1081
|
|
|
|
# install configurations and test data
|
|
COPY danted /etc/init.d/
|
|
COPY danted-authenticating /etc/init.d/
|