2023-01-19 22:02:27 +08:00
|
|
|
FROM ubuntu:20.04 as base
|
2022-02-15 17:23:01 +08:00
|
|
|
|
|
|
|
# set time-zone
|
|
|
|
ENV TZ=Canada/Pacific
|
|
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
|
|
|
2023-04-06 20:40:23 +08:00
|
|
|
# install node with nvm
|
|
|
|
RUN apt-get update -qq && apt-get install -y --no-install-recommends git curl wget ca-certificates
|
2023-04-06 20:29:38 +08:00
|
|
|
ARG nvm_version="0.39.3"
|
|
|
|
ARG node_version="16.20.0"
|
2023-04-06 20:40:23 +08:00
|
|
|
RUN mkdir /usr/local/nvm
|
|
|
|
ENV NVM_DIR /usr/local/nvm
|
|
|
|
ADD https://raw.githubusercontent.com/nvm-sh/nvm/v${nvm_version}/install.sh /nvm_install.sh
|
|
|
|
RUN chmod +x /nvm_install.sh && /nvm_install.sh \
|
|
|
|
&& . $NVM_DIR/nvm.sh \
|
|
|
|
&& nvm install $node_version \
|
|
|
|
&& nvm alias default $node_version \
|
|
|
|
&& nvm use default
|
|
|
|
ENV NODE_PATH $NVM_DIR/v${node_version}/lib/node_modules
|
|
|
|
ENV PATH $NVM_DIR/versions/node/v${node_version}/bin:$PATH
|
|
|
|
|
2022-02-15 17:23:01 +08:00
|
|
|
|
2023-01-18 13:40:21 +08:00
|
|
|
# add setup-cpp.js
|
2023-04-06 20:29:38 +08:00
|
|
|
COPY "./dist/node16" "/"
|
2022-02-15 17:23:01 +08:00
|
|
|
WORKDIR "/"
|
|
|
|
|
|
|
|
# run installation
|
2023-01-18 13:40:21 +08:00
|
|
|
RUN node ./setup-cpp.js --compiler llvm --cmake true --ninja true --cppcheck true --ccache true --vcpkg true --doxygen true --gcovr true --task true
|
2022-02-15 17:23:01 +08:00
|
|
|
|
2023-01-19 22:02:27 +08:00
|
|
|
CMD ["source", "~/.cpprc"]
|
|
|
|
ENTRYPOINT ["/bin/bash"]
|
|
|
|
|
2022-02-15 17:23:01 +08:00
|
|
|
|
2022-04-27 13:33:36 +08:00
|
|
|
#### Building
|
2023-01-19 22:02:27 +08:00
|
|
|
FROM base as builder
|
|
|
|
COPY ./dev/cpp_vcpkg_project /home/app
|
2022-04-27 13:33:36 +08:00
|
|
|
WORKDIR /home/app
|
2022-05-15 18:53:26 +08:00
|
|
|
RUN bash -c 'source ~/.cpprc \
|
|
|
|
&& task build'
|
2022-04-27 13:33:36 +08:00
|
|
|
|
2023-01-19 22:02:27 +08:00
|
|
|
|
2022-04-27 13:33:36 +08:00
|
|
|
### Running environment
|
2022-04-27 14:05:25 +08:00
|
|
|
# use a distroless image or ubuntu:20.04 if you wish
|
2023-01-19 22:02:27 +08:00
|
|
|
FROM gcr.io/distroless/cc as runner
|
2022-04-27 13:33:36 +08:00
|
|
|
# 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"]
|