mirror of https://github.com/aminya/setup-cpp
8 lines
195 B
Plaintext
8 lines
195 B
Plaintext
|
#### Cross Building (example)
|
||
|
FROM setup-cpp-ubuntu-mingw AS builder-mingw
|
||
|
|
||
|
COPY ./dev/cpp_vcpkg_project /home/app
|
||
|
WORKDIR /home/app
|
||
|
RUN bash -c 'source ~/.cpprc \
|
||
|
&& task build_cross_mingw'
|