Skip to content

Commit 1d68644

Browse files
authored
Merge pull request #181 from aminya/docker
2 parents c5d5df5 + bdef4ad commit 1d68644

29 files changed

+291
-143
lines changed

.github/workflows/CI.yml

+1
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@ jobs:
172172
- name: Install and build
173173
run: |
174174
pnpm install
175+
pnpm build.docker_tests
175176
176177
- name: Build
177178
id: docker_build

README.md

+31-11
Original file line numberDiff line numberDiff line change
@@ -153,29 +153,49 @@ Here is an example for using setup-cpp to make a builder image that has the Cpp
153153

154154
```dockerfile
155155
#### Base Image
156-
FROM ubuntu:22.04 as base
156+
FROM ubuntu:22.04 as setup-cpp-ubuntu
157157

158-
# install nodejs and setup-cpp
159158
RUN apt-get update -qq && \
159+
# install nodejs
160160
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/*
165184

166185
ENTRYPOINT ["/bin/bash"]
167186

168187
#### Building (example)
169-
FROM base as builder
188+
FROM setup-cpp-ubuntu AS builder
189+
170190
COPY ./dev/cpp_vcpkg_project /home/app
171191
WORKDIR /home/app
172192
RUN bash -c 'source ~/.cpprc \
173193
&& task build'
174194

195+
#### Running environment
196+
# use a fresh image as the runner
197+
FROM ubuntu:22.04 as runner
175198

176-
### Running environment
177-
# use a distroless image or ubuntu:22.04 if you wish
178-
FROM gcr.io/distroless/cc as runner
179199
# copy the built binaries and their runtime dependencies
180200
COPY --from=builder /home/app/build/my_exe/Release/ /home/app/
181201
WORKDIR /home/app/
@@ -189,7 +209,7 @@ If you want to build the ones included, then run:
189209
```shell
190210
git clone --recurse-submodules https://github.com/aminya/setup-cpp
191211
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 .
193213
```
194214

195215
Where you should use the path to the dockerfile after `-f`.

dev/docker/__tests__/arch.dockerfile

+30-13
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,47 @@
11
## base image
2-
FROM archlinux as base
2+
FROM archlinux:base as setup-cpp-arch
3+
4+
COPY "./dist/legacy" "/usr/lib/setup-cpp/"
35

4-
# install nodejs
56
RUN pacman -Syuu --noconfirm && \
67
pacman-db-upgrade && \
7-
pacman -S --noconfirm --needed nodejs
8-
9-
# add setup-cpp.js (built outside of this dockerfile)
10-
COPY "./dist/legacy" "/"
11-
12-
# run installation
13-
RUN node /setup-cpp.js --compiler llvm --cmake true --ninja true --cppcheck true --ccache true --vcpkg true --doxygen true --gcovr true --task true
8+
# install nodejs
9+
pacman -S --noconfirm --needed nodejs npm && \
10+
# install setup-cpp
11+
npm install -g [email protected] && \
12+
# install the compiler and tools
13+
node /usr/lib/setup-cpp/setup-cpp.js \
14+
--compiler llvm \
15+
--cmake true \
16+
--ninja true \
17+
--task true \
18+
--vcpkg true \
19+
--python true \
20+
--make true \
21+
--cppcheck true \
22+
--gcovr true \
23+
--doxygen true \
24+
--ccache true && \
25+
# arch cleanup
26+
pacman -Scc --noconfirm && \
27+
rm -rf /var/cache/pacman/pkg/* && \
28+
rm -rf /tmp/*
1429

1530
ENTRYPOINT ["/bin/bash"]
1631

1732
#### Building (example)
18-
FROM base AS example-builder
33+
FROM setup-cpp-arch AS builder
34+
1935
COPY ./dev/cpp_vcpkg_project /home/app
2036
WORKDIR /home/app
2137
RUN bash -c 'source ~/.cpprc \
2238
&& task build'
2339

2440
#### Running environment
25-
# use a distroless image or ubuntu:22.04 if you wish
26-
FROM gcr.io/distroless/cc as runner
41+
# use a fresh image as the runner
42+
FROM archlinux:base as runner
43+
2744
# copy the built binaries and their runtime dependencies
28-
COPY --from=example-builder /home/app/build/my_exe/Release/ /home/app/
45+
COPY --from=builder /home/app/build/my_exe/Release/ /home/app/
2946
WORKDIR /home/app/
3047
ENTRYPOINT ["./my_exe"]
+28-13
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,44 @@
11
## base image
2-
FROM fedora as base
2+
FROM fedora:38 as setup-cpp-fedora
33

4-
# install nodejs and setup-cpp
5-
RUN dnf -y install nodejs npm && \
6-
npm install -g setup-cpp
7-
8-
# add setup-cpp.js (built outside of this dockerfile)
9-
COPY "./dist/legacy" "/"
4+
COPY "./dist/legacy" "/usr/lib/setup-cpp/"
105

11-
# run installation
12-
RUN node /setup-cpp.js --compiler llvm --cmake true --ninja true --cppcheck true --ccache true --vcpkg true --doxygen true --gcovr true --task true --powershell true
6+
# install nodejs
7+
RUN dnf -y install nodejs npm && \
8+
# install setup-cpp
9+
npm install -g [email protected] && \
10+
# install the compiler and tools
11+
node /usr/lib/setup-cpp/setup-cpp.js \
12+
--compiler llvm \
13+
--cmake true \
14+
--ninja true \
15+
--task true \
16+
--vcpkg true \
17+
--python true \
18+
--make true \
19+
--cppcheck true \
20+
--gcovr true \
21+
--doxygen true \
22+
--ccache true && \
23+
# cleanup
24+
dnf clean all && \
25+
rm -rf /tmp/*
1326

1427
ENTRYPOINT ["/bin/bash"]
1528

1629
#### Building (example)
17-
FROM base AS example-builder
30+
FROM setup-cpp-fedora AS builder
31+
1832
COPY ./dev/cpp_vcpkg_project /home/app
1933
WORKDIR /home/app
2034
RUN bash -c 'source ~/.cpprc \
2135
&& task build'
2236

2337
#### Running environment
24-
# use a distroless image or ubuntu:22.04 if you wish
25-
FROM gcr.io/distroless/cc as runner
38+
# use a fresh image as the runner
39+
FROM fedora:38 as runner
40+
2641
# copy the built binaries and their runtime dependencies
27-
COPY --from=example-builder /home/app/build/my_exe/Release/ /home/app/
42+
COPY --from=builder /home/app/build/my_exe/Release/ /home/app/
2843
WORKDIR /home/app/
2944
ENTRYPOINT ["./my_exe"]

dev/docker/__tests__/ubuntu.dockerfile

+34-14
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,49 @@
11
#### Base Image
2-
FROM ubuntu:22.04 as base
2+
FROM ubuntu:22.04 as setup-cpp-ubuntu
33

4-
# install nodejs and setup-cpp
5-
RUN apt-get update -qq && \
6-
apt-get install -y --no-install-recommends nodejs
7-
8-
# add setup-cpp.js (built outside of this dockerfile)
9-
COPY "./dist/legacy" "/"
4+
COPY "./dist/legacy" "/usr/lib/setup-cpp/"
105

11-
# install setup-cpp
12-
RUN node /setup-cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true --task true
6+
RUN apt-get update -qq && \
7+
# install nodejs
8+
apt-get install -y --no-install-recommends nodejs npm && \
9+
# install setup-cpp
10+
npm install -g [email protected] && \
11+
# install the compiler and tools
12+
node /usr/lib/setup-cpp/setup-cpp.js \
13+
--nala true \
14+
--compiler llvm \
15+
--cmake true \
16+
--ninja true \
17+
--task true \
18+
--vcpkg true \
19+
--python true \
20+
--make true \
21+
--cppcheck true \
22+
--gcovr true \
23+
--doxygen true \
24+
--ccache true && \
25+
# cleanup
26+
nala autoremove -y && \
27+
nala autopurge -y && \
28+
apt-get clean && \
29+
nala clean --lists && \
30+
rm -rf /var/lib/apt/lists/* && \
31+
rm -rf /tmp/*
1332

1433
ENTRYPOINT ["/bin/bash"]
1534

16-
#### Building
17-
FROM base as builder
35+
#### Building (example)
36+
FROM setup-cpp-ubuntu AS builder
37+
1838
COPY ./dev/cpp_vcpkg_project /home/app
1939
WORKDIR /home/app
2040
RUN bash -c 'source ~/.cpprc \
2141
&& task build'
2242

43+
#### Running environment
44+
# use a fresh image as the runner
45+
FROM ubuntu:22.04 as runner
2346

24-
### Running environment
25-
# use a distroless image or ubuntu:22.04 if you wish
26-
FROM gcr.io/distroless/cc as runner
2747
# copy the built binaries and their runtime dependencies
2848
COPY --from=builder /home/app/build/my_exe/Release/ /home/app/
2949
WORKDIR /home/app/

dev/docker/arch.dockerfile

+6-18
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,16 @@
1-
## base image
2-
FROM archlinux as base
3-
4-
# install nodejs and setup-cpp
5-
RUN pacman -Syuu --noconfirm && \
6-
pacman-db-upgrade && \
7-
pacman -S --noconfirm --needed nodejs npm && \
8-
npm install -g setup-cpp
9-
10-
# run installation
11-
RUN setup-cpp --compiler llvm --cmake true --ninja true --cppcheck true --ccache true --vcpkg true --doxygen true --gcovr true --task true
12-
13-
ENTRYPOINT ["/bin/bash"]
14-
151
#### Building (example)
16-
FROM base AS example-builder
2+
FROM setup-cpp-arch AS builder
3+
174
COPY ./dev/cpp_vcpkg_project /home/app
185
WORKDIR /home/app
196
RUN bash -c 'source ~/.cpprc \
207
&& task build'
218

229
#### Running environment
23-
# use a distroless image or ubuntu:22.04 if you wish
24-
FROM gcr.io/distroless/cc as runner
10+
# use a fresh image as the runner
11+
FROM archlinux:base as runner
12+
2513
# copy the built binaries and their runtime dependencies
26-
COPY --from=example-builder /home/app/build/my_exe/Release/ /home/app/
14+
COPY --from=builder /home/app/build/my_exe/Release/ /home/app/
2715
WORKDIR /home/app/
2816
ENTRYPOINT ["./my_exe"]

dev/docker/fedora.dockerfile

+6-16
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,16 @@
1-
## base image
2-
FROM fedora as base
3-
4-
# install nodejs and setup-cpp
5-
RUN dnf -y install nodejs npm && \
6-
npm install -g setup-cpp
7-
8-
# run installation
9-
RUN setup-cpp --compiler llvm --cmake true --ninja true --cppcheck true --ccache true --vcpkg true --doxygen true --gcovr true --task true --powershell true
10-
11-
ENTRYPOINT ["/bin/bash"]
12-
131
#### Building (example)
14-
FROM base AS example-builder
2+
FROM setup-cpp-fedora AS builder
3+
154
COPY ./dev/cpp_vcpkg_project /home/app
165
WORKDIR /home/app
176
RUN bash -c 'source ~/.cpprc \
187
&& task build'
198

209
#### Running environment
21-
# use a distroless image or ubuntu:22.04 if you wish
22-
FROM gcr.io/distroless/cc as runner
10+
# use a fresh image as the runner
11+
FROM fedora:38 as runner
12+
2313
# copy the built binaries and their runtime dependencies
24-
COPY --from=example-builder /home/app/build/my_exe/Release/ /home/app/
14+
COPY --from=builder /home/app/build/my_exe/Release/ /home/app/
2515
WORKDIR /home/app/
2616
ENTRYPOINT ["./my_exe"]

dev/docker/setup-cpp-arch.dockerfile

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
## base image
2+
FROM archlinux:base as setup-cpp-arch
3+
4+
RUN pacman -Syuu --noconfirm && \
5+
pacman-db-upgrade && \
6+
# install nodejs
7+
pacman -S --noconfirm --needed nodejs npm && \
8+
# install setup-cpp
9+
npm install -g [email protected] && \
10+
# install the compiler and tools
11+
setup-cpp \
12+
--compiler llvm \
13+
--cmake true \
14+
--ninja true \
15+
--task true \
16+
--vcpkg true \
17+
--python true \
18+
--make true \
19+
--cppcheck true \
20+
--gcovr true \
21+
--doxygen true \
22+
--ccache true && \
23+
# arch cleanup
24+
pacman -Scc --noconfirm && \
25+
rm -rf /var/cache/pacman/pkg/* && \
26+
rm -rf /tmp/*
27+
28+
ENTRYPOINT ["/bin/bash"]
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
## base image
2+
FROM fedora:38 as setup-cpp-fedora
3+
4+
# install nodejs
5+
RUN dnf -y install nodejs npm && \
6+
# install setup-cpp
7+
npm install -g [email protected] && \
8+
# install the compiler and tools
9+
setup-cpp \
10+
--compiler llvm \
11+
--cmake true \
12+
--ninja true \
13+
--task true \
14+
--vcpkg true \
15+
--python true \
16+
--make true \
17+
--cppcheck true \
18+
--gcovr true \
19+
--doxygen true \
20+
--ccache true && \
21+
# cleanup
22+
dnf clean all && \
23+
rm -rf /tmp/*
24+
25+
ENTRYPOINT ["/bin/bash"]

0 commit comments

Comments
 (0)