We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 384d561 commit 2a4278dCopy full SHA for 2a4278d
.travis.yml
@@ -1,10 +1,15 @@
1
dist: jammy
2
language: python
3
python: 3.9
4
-addons:
5
- apt:
6
- packages:
7
- - docker
+before_install:
+ - sudo rm -rf /var/lib/apt/lists/*
+ - curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
+ - sudo add-apt-repository -y "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) edge"
8
+ - sudo apt-get update
9
+ - sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-ce
10
+ - mkdir -vp ~/.docker/cli-plugins/
11
+ - curl --silent -L "https://github.com/docker/buildx/releases/download/v0.3.0/buildx-v0.3.0.linux-amd64" > ~/.docker/cli-plugins/docker-buildx
12
+ - chmod a+x ~/.docker/cli-plugins/docker-buildx
13
install:
14
- pip install pipenv
15
- pipenv sync
0 commit comments