File tree 7 files changed +8
-10
lines changed
7 files changed +8
-10
lines changed Original file line number Diff line number Diff line change 159
159
# fetch keyring over https connection and unpack it using gpg's --dearmor option
160
160
curl -fsSL https://apt.my-secure.org/my-unofficial-repo.gpg.key | sudo gpg --dearmor -o /usr/share/keyrings/my-unofficial-repo.gpg.key
161
161
# and then add them to a apt key sources list.
162
- echo "deb [signed-by=/usr/share/keyrings/my-unofficial-repo.gpg.key] http://apt.my-secure.org/focal / \
162
+ echo "deb [signed-by=/usr/share/keyrings/my-unofficial-repo.gpg.key] http://apt.my-secure.org/jammy / \
163
163
my-unofficial-repo-toolchain main" | sudo tee /etc/apt/sources.list.d/my-unofficial-repo.list > /dev/null
164
164
```
165
165
Original file line number Diff line number Diff line change 1
- FROM buildpack-deps:focal
1
+ FROM buildpack-deps:jammy
2
2
3
3
COPY install-packages upgrade-packages /usr/bin/
4
4
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ if [[ $EUID != 0 ]]; then
26
26
fi
27
27
28
28
# Set a runlevel to avoid invoke-rc.d warnings
29
- # http://manpages.ubuntu.com/manpages/focal /man8/runlevel.8.html#environment
29
+ # http://manpages.ubuntu.com/manpages/jammy /man8/runlevel.8.html#environment
30
30
# shellcheck disable=SC2034
31
31
RUNLEVEL=1
32
32
Original file line number Diff line number Diff line change @@ -4,6 +4,6 @@ FROM ${base}
4
4
USER gitpod
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
RUN sudo apt-get install -y --only-upgrade ca-certificates
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ USER root
7
7
ENV TRIGGER_REBUILD=1
8
8
9
9
RUN curl -fsSL https://apt.llvm.org/llvm-snapshot.gpg.key | sudo gpg --dearmor -o /usr/share/keyrings/llvm-archive-keyring.gpg \
10
- && echo "deb [signed-by=/usr/share/keyrings/llvm-archive-keyring.gpg] http://apt.llvm.org/focal / \
11
- llvm-toolchain-focal -15 main" | sudo tee /etc/apt/sources.list.d/llvm.list > /dev/null \
10
+ && echo "deb [signed-by=/usr/share/keyrings/llvm-archive-keyring.gpg] http://apt.llvm.org/jammy / \
11
+ llvm-toolchain-jammy -15 main" | sudo tee /etc/apt/sources.list.d/llvm.list > /dev/null \
12
12
&& apt update \
13
13
&& install-packages \
14
14
clang \
Original file line number Diff line number Diff line change @@ -7,8 +7,6 @@ USER root
7
7
ENV TRIGGER_REBUILD=1
8
8
9
9
RUN cd /tmp \
10
- && wget https://packages.erlang-solutions.com/erlang-solutions_2.0_all.deb \
11
- && dpkg -i erlang-solutions_2.0_all.deb \
12
10
&& install-packages elixir
13
11
14
12
USER gitpod
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ USER root
6
6
# Dazzle does not rebuild a layer until one of its lines are changed. Increase this counter to rebuild this layer.
7
7
ENV TRIGGER_REBUILD=2
8
8
9
- RUN curl -fsSL https://pkgs.tailscale.com/stable/ubuntu/focal .gpg | sudo apt-key add - \
10
- && curl -fsSL https://pkgs.tailscale.com/stable/ubuntu/focal .list | sudo tee /etc/apt/sources.list.d/tailscale.list \
9
+ RUN curl -fsSL https://pkgs.tailscale.com/stable/ubuntu/jammy .gpg | sudo apt-key add - \
10
+ && curl -fsSL https://pkgs.tailscale.com/stable/ubuntu/jammy .list | sudo tee /etc/apt/sources.list.d/tailscale.list \
11
11
&& apt-get update \
12
12
&& apt-get install -y tailscale \
13
13
&& rm /etc/apt/sources.list.d/tailscale.list \
You can’t perform that action at this time.
0 commit comments