Browse Source

Set noninteractive so tests don't hang

pull/550/head
Tim Kimber 6 years ago
parent
commit
472ea2312f
No known key found for this signature in database GPG Key ID: 3E1804964E76BD18
2 changed files with 8 additions and 0 deletions
  1. +3
    -0
      test/Dockerfile-ubuntu
  2. +5
    -0
      test/Dockerfile-ubuntu-staging

+ 3
- 0
test/Dockerfile-ubuntu View File

@ -2,6 +2,9 @@ FROM ubuntu:latest
# Note this image uses mawk1.3
# Set noninteractive otherwise tzdata hangs
ENV DEBIAN_FRONTEND noninteractive
# Update and install required software
RUN apt-get update --fix-missing
RUN apt-get install -y git curl dnsutils wget nginx-light


+ 5
- 0
test/Dockerfile-ubuntu-staging View File

@ -2,8 +2,13 @@ FROM ubuntu:latest
# Note this image uses mawk1.3
# Set noninteractive otherwise tzdata hangs
ENV DEBIAN_FRONTEND noninteractive
# Ensure tests in this image use the staging server
ENV staging "true"
ENV DUCKDNS_TOKEN 1d616aa9-b8e4-4bb4-b312-3289de82badb
# Update and install required software
RUN apt-get update --fix-missing
RUN apt-get install -y git curl dnsutils wget nginx-light


Loading…
Cancel
Save