File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 89
89
- ubuntu-20.04
90
90
container :
91
91
- " ubuntu_node.dockerfile"
92
- - " ubuntu_stable_node .dockerfile"
92
+ - " ubuntu_20.04_node .dockerfile"
93
93
node :
94
94
- 14
95
95
pnpm :
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ Here is an example for using setup_cpp to make a builder image that has the Cpp
180
180
181
181
``` dockerfile
182
182
# ### Base Image
183
- FROM ubuntu:devel AS base
183
+ FROM ubuntu:22.04 AS base
184
184
185
185
# add setup_cpp
186
186
WORKDIR "/"
@@ -203,7 +203,7 @@ RUN bash -c 'source ~/.cpprc \
203
203
&& make build'
204
204
205
205
# ## 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
207
207
FROM gcr.io/distroless/cc
208
208
# copy the built binaries and their runtime dependencies
209
209
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
258
258
.gitlab-ci.yaml
259
259
260
260
` ` ` yaml
261
- image : ubuntu:devel
261
+ image : ubuntu:22.04
262
262
263
263
stages :
264
264
- test
Original file line number Diff line number Diff line change 1
1
# ### Base Image
2
- FROM ubuntu:devel AS base
2
+ FROM ubuntu:22.04 AS base
3
3
4
4
# add setup_cpp
5
5
WORKDIR "/"
@@ -22,7 +22,7 @@ RUN bash -c 'source ~/.cpprc \
22
22
&& make build'
23
23
24
24
# ## 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
26
26
FROM gcr.io/distroless/cc
27
27
# copy the built binaries and their runtime dependencies
28
28
COPY --from=builder /home/app/build/my_exe/Release/ /home/app/
File renamed without changes.
Original file line number Diff line number Diff line change 1
- FROM ubuntu:devel AS base
1
+ FROM ubuntu:22.04 AS base
2
2
3
3
RUN apt-get update -qq
4
4
RUN apt-get install -y --no-install-recommends nodejs
@@ -21,7 +21,7 @@ RUN bash -c 'source ~/.cpprc \
21
21
&& make build'
22
22
23
23
# ## 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
25
25
FROM gcr.io/distroless/cc
26
26
# copy the built binaries and their runtime dependencies
27
27
COPY --from=builder /home/app/build/my_exe/Release/ /home/app/
You can’t perform that action at this time.
0 commit comments