Skip to content

Commit 455c907

Browse files
committed
docker: use ubuntu 22.04 instead of unreleased kinetic
1 parent 511e675 commit 455c907

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
- ubuntu-20.04
9090
container:
9191
- "ubuntu_node.dockerfile"
92-
- "ubuntu_stable_node.dockerfile"
92+
- "ubuntu_20.04_node.dockerfile"
9393
node:
9494
- 14
9595
pnpm:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ Here is an example for using setup_cpp to make a builder image that has the Cpp
180180

181181
```dockerfile
182182
#### Base Image
183-
FROM ubuntu:devel AS base
183+
FROM ubuntu:22.04 AS base
184184

185185
# add setup_cpp
186186
WORKDIR "/"
@@ -203,7 +203,7 @@ RUN bash -c 'source ~/.cpprc \
203203
&& make build'
204204

205205
### Running environment
206-
# use a distroless image or ubuntu:devel if you wish
206+
# use a distroless image or ubuntu:22.04 if you wish
207207
FROM gcr.io/distroless/cc
208208
# copy the built binaries and their runtime dependencies
209209
COPY --from=builder /home/app/build/my_exe/Release/ /home/app/
@@ -258,7 +258,7 @@ The following gives an example for setting up a C++ environment inside GitLab pi
258258
.gitlab-ci.yaml
259259
260260
```yaml
261-
image: ubuntu:devel
261+
image: ubuntu:22.04
262262

263263
stages:
264264
- test

dev/docker/ubuntu.dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#### Base Image
2-
FROM ubuntu:devel AS base
2+
FROM ubuntu:22.04 AS base
33

44
# add setup_cpp
55
WORKDIR "/"
@@ -22,7 +22,7 @@ RUN bash -c 'source ~/.cpprc \
2222
&& make build'
2323

2424
### Running environment
25-
# use a distroless image or ubuntu:devel if you wish
25+
# use a distroless image or ubuntu:22.04 if you wish
2626
FROM gcr.io/distroless/cc
2727
# copy the built binaries and their runtime dependencies
2828
COPY --from=builder /home/app/build/my_exe/Release/ /home/app/

dev/docker/ubuntu_node.dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:devel AS base
1+
FROM ubuntu:22.04 AS base
22

33
RUN apt-get update -qq
44
RUN apt-get install -y --no-install-recommends nodejs
@@ -21,7 +21,7 @@ RUN bash -c 'source ~/.cpprc \
2121
&& make build'
2222

2323
### Running environment
24-
# use a distroless image or ubuntu:devel if you wish
24+
# use a distroless image or ubuntu:22.04 if you wish
2525
FROM gcr.io/distroless/cc
2626
# copy the built binaries and their runtime dependencies
2727
COPY --from=builder /home/app/build/my_exe/Release/ /home/app/

0 commit comments

Comments
 (0)