mirror of
git://code.qt.io/qt/qt5.git
synced 2026-02-01 19:36:04 +08:00
Build and cache docker images based on the configurations in testserver. 1. Move the shared Docker files to common/shared/testserver 2. Deploy boot2docker image into VirtualBox via docker-machine commands. 3. Build and tag the docker images by the SHA-1 of server context. Change-Id: Ic5a588e5cc5e753ec4c4e2e1bc79917bbd03f95d Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
10 lines
373 B
Docker
10 lines
373 B
Docker
FROM ubuntu:16.04
|
|
RUN apt-get update && apt-get install -y gdebi-core=0.9.5.7ubuntu1 wget avahi-daemon
|
|
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/
|