mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-05 22:46:55 +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. The SHA-1 of the provisioned images in docker cache: qt-test-server-apache2:537fe302f61851d1663f41495230d8e3554a4a13 qt-test-server-squid:9c32f41b19aca3d778733c4d8fb0ecc5955e893c qt-test-server-vsftpd:f3a9c8d793a77cc007c0e4e481bec01f9e3eeb7e qt-test-server-ftp-proxy:d7de8b28392d173db512a558ccc84ead8bece2ae qt-test-server-danted:35607f9b790524cf9690c7d12a9a401696b7b6b5 Change-Id: I4e6c8cb235f1f798274eb52858e06d8755ae626f Reviewed-by: Jędrzej Nowacki <jedrzej.nowacki@qt.io>
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/
|