Skip to content

Commit

Permalink
Update Dockerfile with new retry.py and apt-get upgrade
Browse files Browse the repository at this point in the history
`apt-get upgrade` changes taken from #19595.
  • Loading branch information
foolip committed Oct 18, 2019
1 parent 09cc184 commit 3cb58e9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .taskcluster.yml
Expand Up @@ -69,7 +69,7 @@ tasks:
source: ${event.repository.url}
payload:
image:
harjgam/web-platform-tests:0.33
filoop/web-platform-tests:0.34
maxRunTime: 7200
artifacts:
public/results:
Expand Down Expand Up @@ -168,7 +168,7 @@ tasks:
owner: ${event.pull_request.user.login}@users.noreply.github.com
source: ${event.repository.url}
payload:
image: harjgam/web-platform-tests:0.33
image: filoop/web-platform-tests:0.34
maxRunTime: 7200
artifacts:
public/results:
Expand Down Expand Up @@ -334,7 +334,7 @@ tasks:
owner: ${event.sender.login}@users.noreply.github.com
source: ${event.repository.url}
payload:
image: harjgam/web-platform-tests:0.33
image: filoop/web-platform-tests:0.34
maxRunTime: 7200
artifacts:
public/results:
Expand Down
7 changes: 5 additions & 2 deletions tools/docker/Dockerfile
Expand Up @@ -4,9 +4,12 @@ FROM ubuntu:18.04
ENV DEBIAN_FRONTEND=noninteractive \
DEBCONF_NONINTERACTIVE_SEEN=true

# General requirements not in the base image
# Update and upgrade.
RUN apt-get -qqy update \
&& apt-get -qqy install \
&& apt-get -qqy upgrade

# General requirements not in the base image
RUN apt-get -qqy install \
bridge-utils \
bzip2 \
ca-certificates \
Expand Down

0 comments on commit 3cb58e9

Please sign in to comment.