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
6
6
USER gitpod
7
7
8
8
# 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
10
10
ENV GO_VERSION=${GO_VERSION}
11
11
ENV GOPATH=$HOME/go-packages
12
12
ENV GOROOT=$HOME/go
Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ RUN sudo install-packages \
21
21
libncursesw5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev \
22
22
# Install PYENV
23
23
&& 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 \
26
26
&& pyenv install ${PYTHON_VERSION} \
27
27
&& pyenv global ${PYTHON_VERSION} \
28
28
&& 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}
4
4
USER root
5
5
6
6
# 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
8
8
9
9
# https://docs.docker.com/engine/install/ubuntu/
10
10
RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg \
11
11
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
12
12
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null \
13
13
&& 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
15
15
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) \
17
17
&& chmod +x /usr/local/bin/docker-compose && mkdir -p /usr/local/lib/docker/cli-plugins && \
18
18
ln -s /usr/local/bin/docker-compose /usr/local/lib/docker/cli-plugins/docker-compose
19
19
Original file line number Diff line number Diff line change 8
8
command : [docker-compose --version]
9
9
assert :
10
10
- status == 0
11
- - stdout.indexOf("2.24.1 ") != -1
11
+ - stdout.indexOf("2.39.2 ") != -1
12
12
- desc : containerd should be installed
13
13
command : [containerd, config, dump]
14
14
assert :
You can’t perform that action at this time.
0 commit comments