@@ -153,29 +153,49 @@ Here is an example for using setup-cpp to make a builder image that has the Cpp
153
153
154
154
``` dockerfile
155
155
# ### Base Image
156
- FROM ubuntu:22.04 as base
156
+ FROM ubuntu:22.04 as setup-cpp-ubuntu
157
157
158
- # install nodejs and setup-cpp
159
158
RUN apt-get update -qq && \
159
+ # install nodejs
160
160
apt-get install -y --no-install-recommends nodejs npm && \
161
- npm install -g setup-cpp
162
-
163
- # install llvm, cmake, ninja, and ccache
164
- RUN setup-cpp --compiler llvm --cmake true --ninja true --ccache true --vcpkg true --task true
161
+ # install setup-cpp
162
+ npm install -g
[email protected] && \
163
+ # install the compiler and tools
164
+ setup-cpp \
165
+ --nala true \
166
+ --compiler llvm \
167
+ --cmake true \
168
+ --ninja true \
169
+ --task true \
170
+ --vcpkg true \
171
+ --python true \
172
+ --make true \
173
+ --cppcheck true \
174
+ --gcovr true \
175
+ --doxygen true \
176
+ --ccache true && \
177
+ # cleanup
178
+ nala autoremove -y && \
179
+ nala autopurge -y && \
180
+ apt-get clean && \
181
+ nala clean --lists && \
182
+ rm -rf /var/lib/apt/lists/* && \
183
+ rm -rf /tmp/*
165
184
166
185
ENTRYPOINT ["/bin/bash" ]
167
186
168
187
# ### Building (example)
169
- FROM base as builder
188
+ FROM setup-cpp-ubuntu AS builder
189
+
170
190
COPY ./dev/cpp_vcpkg_project /home/app
171
191
WORKDIR /home/app
172
192
RUN bash -c 'source ~/.cpprc \
173
193
&& task build'
174
194
195
+ # ### Running environment
196
+ # use a fresh image as the runner
197
+ FROM ubuntu:22.04 as runner
175
198
176
- # ## Running environment
177
- # use a distroless image or ubuntu:22.04 if you wish
178
- FROM gcr.io/distroless/cc as runner
179
199
# copy the built binaries and their runtime dependencies
180
200
COPY --from=builder /home/app/build/my_exe/Release/ /home/app/
181
201
WORKDIR /home/app/
@@ -189,7 +209,7 @@ If you want to build the ones included, then run:
189
209
``` shell
190
210
git clone --recurse-submodules https://github.com/aminya/setup-cpp
191
211
cd ./setup-cpp
192
- docker build -f ./dev/docker/ubuntu.dockerfile -t setup-cpp .
212
+ docker build -f ./dev/docker/setup-cpp- ubuntu.dockerfile -t setup-cpp .
193
213
```
194
214
195
215
Where you should use the path to the dockerfile after ` -f ` .
0 commit comments