File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.145.1/containers/ubuntu/.devcontainer/base.Dockerfile
4
4
5
- # [Choice] Ubuntu version: bionic, focal
6
- ARG VARIANT="focal"
5
+ # [Choice] Ubuntu version: bionic,
6
+
7
+ ARG VARIANT="jammy"
7
8
FROM mcr.microsoft.com/vscode/devcontainers/base:0-${VARIANT}
8
9
9
10
USER root
@@ -19,15 +20,15 @@ RUN apt-get update \
19
20
rm -rf /var/lib/apt/lists/*
20
21
21
22
ENV DEBIAN_FRONTEND=noninteractive
22
- RUN echo "deb http://archive.ubuntu.com/ubuntu focal -proposed main restricted" | tee -a /etc/apt/sources.list; \
23
- echo "deb http://archive.ubuntu.com/ubuntu focal -proposed universe" | tee -a /etc/apt/sources.list; \
24
- echo "deb http://archive.ubuntu.com/ubuntu focal -proposed multiverse" | tee -a /etc/apt/sources.list; \
23
+ RUN echo "deb http://archive.ubuntu.com/ubuntu jammy -proposed main restricted" | tee -a /etc/apt/sources.list; \
24
+ echo "deb http://archive.ubuntu.com/ubuntu jammy -proposed universe" | tee -a /etc/apt/sources.list; \
25
+ echo "deb http://archive.ubuntu.com/ubuntu jammy -proposed multiverse" | tee -a /etc/apt/sources.list; \
25
26
apt-get -qq update; \
26
27
apt-get -y install tzdata dos2unix
27
28
28
29
RUN wget -qO - http://apt.feelpp.org/apt.gpg | gpg --dearmor > feelpp.gpg; \
29
30
install -o root -g root -m 644 feelpp.gpg /etc/apt/trusted.gpg.d; \
30
- echo "deb [signed-by=/etc/apt/trusted.gpg.d/feelpp.gpg] http://apt.feelpp.org/ubuntu focal ${CHANNEL}" | tee -a /etc/apt/sources.list.d/feelpp.list; \
31
+ echo "deb [signed-by=/etc/apt/trusted.gpg.d/feelpp.gpg] http://apt.feelpp.org/ubuntu/jammy jammy ${CHANNEL}" | tee -a /etc/apt/sources.list.d/feelpp.list; \
31
32
rm -f feelpp.gpg; \
32
33
apt-get update ;\
33
34
apt-get install -y --no-install-recommends g++ clang-9 man-db libboost-regex1.71.0-icu66 feelpp-quickstart feelpp-data feelpp-tools python3-feelpp libfeelpp-dev make rsync; \
You can’t perform that action at this time.
0 commit comments