mirror of
https://github.com/containous/traefik.git
synced 2024-12-23 17:34:13 +03:00
12 lines
266 B
Bash
Executable File
12 lines
266 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
sudo -E apt-get -yq update
|
|
sudo -E apt-get -yq --no-install-suggests --no-install-recommends --force-yes install docker-ce=${DOCKER_VERSION}*
|
|
docker version
|
|
|
|
pip install --user -r requirements.txt
|
|
|
|
make pull-images
|
|
ci_retry make validate
|