Skip to content

Commit 2a4278d

Browse files
committed
fixing travis jobs
1 parent 384d561 commit 2a4278d

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.travis.yml

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
dist: jammy
22
language: python
33
python: 3.9
4-
addons:
5-
apt:
6-
packages:
7-
- docker
4+
before_install:
5+
- sudo rm -rf /var/lib/apt/lists/*
6+
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
7+
- 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
813
install:
914
- pip install pipenv
1015
- pipenv sync

0 commit comments

Comments
 (0)