-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1481 from cfengine/junit-summary-failure-improvem…
…ent/3.21 junit summary failure improvement/3.21
- Loading branch information
Showing
2 changed files
with
6 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
FROM ubuntu:20.04 | ||
RUN cat /etc/resolv.conf | ||
RUN bash -c 'echo "test" >/dev/tcp/archive.ubuntu.com/80' | ||
RUN apt-get update -y && apt-get install -y systemd wget sudo | ||
# some ways of debugging update problems below, uncomment to try, see ENT-11871 for archive.ubuntu.com flakes | ||
#RUN apt-get update -y -o Debug::Acquire::http=true | ||
#RUN apt-get install -y -o Debug::Acquire::http=true systemd wget sudo | ||
ADD setup.sh / | ||
RUN /bin/bash -c '/setup.sh 2>&1 > setup.log' | ||
CMD [ "/lib/systemd/systemd" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters