File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ ARG GO_VERSION
66USER gitpod
77
88# Dazzle does not rebuild a layer until one of its lines are changed. Increase this counter to rebuild this layer.
9- ENV TRIGGER_REBUILD=1
9+ ENV TRIGGER_REBUILD=2
1010ENV GO_VERSION=${GO_VERSION}
1111ENV GOPATH=$HOME/go-packages
1212ENV GOROOT=$HOME/go
Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ RUN sudo install-packages \
2121 libncursesw5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev \
2222 # Install PYENV
2323 && git clone https://github.com/pyenv/pyenv.git ~/.pyenv \
24- # v2.6.2
25- && git -C ~/.pyenv checkout a71a378dacd210f5673550ff923715bf4d04324f \
24+ # v2.6.7
25+ && git -C ~/.pyenv checkout 3dbdfdf39a4299261f1d6ae94d044036a89de930 \
2626 && pyenv install ${PYTHON_VERSION} \
2727 && pyenv global ${PYTHON_VERSION} \
2828 && for exec in global; do printf '%s\n ' 'source "$HOME/.gp_pyenv.d/userbase.bash"' >> "$PYENV_ROOT/libexec/pyenv-$exec" ; done \
Original file line number Diff line number Diff line change @@ -4,16 +4,16 @@ FROM ${base}
44USER root
55
66# Dazzle does not rebuild a layer until one of its lines are changed. Increase this counter to rebuild this layer.
7- ENV TRIGGER_REBUILD=1
7+ ENV TRIGGER_REBUILD=2
88
99# https://docs.docker.com/engine/install/ubuntu/
1010RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg \
1111 && echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
1212 $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null \
1313 && apt update \
14- && install-packages docker-ce=5:27.3.1 -1~ubuntu.22.04~jammy docker-ce-cli=5:27.3.1 -1~ubuntu.22.04~jammy containerd.io docker-buildx-plugin
14+ && install-packages docker-ce=5:28.2.2 -1~ubuntu.22.04~jammy docker-ce-cli=5:28.2.2 -1~ubuntu.22.04~jammy containerd.io docker-buildx-plugin
1515
16- RUN curl -o /usr/local/bin/docker-compose -fsSL https://github.com/docker/compose/releases/download/v2.24.1 /docker-compose-linux-$(uname -m) \
16+ RUN curl -o /usr/local/bin/docker-compose -fsSL https://github.com/docker/compose/releases/download/v2.39.2 /docker-compose-linux-$(uname -m) \
1717 && chmod +x /usr/local/bin/docker-compose && mkdir -p /usr/local/lib/docker/cli-plugins && \
1818 ln -s /usr/local/bin/docker-compose /usr/local/lib/docker/cli-plugins/docker-compose
1919
Original file line number Diff line number Diff line change 88 command : [docker-compose --version]
99 assert :
1010 - status == 0
11- - stdout.indexOf("2.24.1 ") != -1
11+ - stdout.indexOf("2.39.2 ") != -1
1212- desc : containerd should be installed
1313 command : [containerd, config, dump]
1414 assert :
You can’t perform that action at this time.
0 commit comments