Skip to content

Commit 2dc3404

Browse files
Merge branch 'main' into renovate/buildpack-deps-jammy
2 parents b7a0653 + 2f2db9c commit 2dc3404

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

chunks/lang-go/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ARG GO_VERSION
66
USER 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
1010
ENV GO_VERSION=${GO_VERSION}
1111
ENV GOPATH=$HOME/go-packages
1212
ENV GOROOT=$HOME/go

chunks/lang-python/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 \

chunks/tool-docker/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ FROM ${base}
44
USER 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/
1010
RUN 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

tests/tool-docker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
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:

0 commit comments

Comments
 (0)