mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-04 14:07:42 +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>
8 lines
235 B
Docker
8 lines
235 B
Docker
FROM ubuntu:16.04
|
|
ARG packages="vsftpd ftp wget avahi-daemon"
|
|
RUN apt-get update && apt-get install -y $packages && dpkg -l $packages
|
|
EXPOSE 20-21
|
|
|
|
# install configurations and test data
|
|
RUN wget https://tools.ietf.org/rfc/rfc3252.txt
|