mirror of https://github.com/aminya/setup-cpp
17 lines
414 B
Docker
17 lines
414 B
Docker
#### Building (example)
|
|
FROM setup-cpp-fedora AS builder
|
|
|
|
COPY ./dev/cpp_vcpkg_project /home/app
|
|
WORKDIR /home/app
|
|
RUN bash -c 'source ~/.cpprc \
|
|
&& task build'
|
|
|
|
#### Running environment
|
|
# use a fresh image as the runner
|
|
FROM fedora:38 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"]
|