setup-cpp/dev/docker/ubuntu.dockerfile

31 lines
778 B
Plaintext
Raw Normal View History

#### Base Image
2023-01-19 22:02:27 +08:00
FROM ubuntu:22.04 as base
2021-09-19 01:05:52 +08:00
2023-01-18 18:52:47 +08:00
# install setup-cpp
2023-01-19 22:02:27 +08:00
RUN apt-get update -qq
RUN apt-get install -y --no-install-recommends npm
2023-01-18 18:52:47 +08:00
RUN npm install -g setup-cpp
2021-09-19 01:05:52 +08:00
# install llvm, cmake, ninja, and ccache
2023-01-18 18:52:47 +08:00
RUN setup-cpp --compiler llvm --cmake true --ninja true --ccache true --vcpkg true --task true
2023-01-19 22:02:27 +08:00
CMD ["source", "~/.cpprc"]
ENTRYPOINT ["/bin/bash"]
#### Building
2023-01-19 22:02:27 +08:00
FROM base as builder
COPY ./dev/cpp_vcpkg_project /home/app
WORKDIR /home/app
2022-05-13 10:10:55 +08:00
RUN bash -c 'source ~/.cpprc \
2022-05-15 18:53:26 +08:00
&& task build'
2023-01-19 22:02:27 +08:00
### Running environment
# use a distroless image or ubuntu:22.04 if you wish
2023-01-19 22:02:27 +08:00
FROM gcr.io/distroless/cc as runner
# copy the built binaries and their runtime dependencies
COPY --from=builder /home/app/build/my_exe/Release/ /home/app/
WORKDIR /home/app/
ENTRYPOINT ["./my_exe"]