mirror of
https://github.com/albfan/miraclecast.git
synced 2025-02-12 19:41:53 +00:00
12 lines
203 B
Text
12 lines
203 B
Text
|
FROM docker.io/albfan/miraclecast-ci
|
||
|
|
||
|
COPY . ./
|
||
|
|
||
|
RUN rm -rf build-autotools ; \
|
||
|
mkdir build-autotools; \
|
||
|
cd build-autotools; \
|
||
|
../autogen.sh; \
|
||
|
../configure; \
|
||
|
make; \
|
||
|
make check
|