10 lines
177 B
Docker
10 lines
177 B
Docker
|
FROM scratch
|
||
|
COPY root /
|
||
|
COPY acct /
|
||
|
COPY system.img /
|
||
|
COPY system_ext.img /
|
||
|
COPY vendor.img /
|
||
|
COPY product.img /
|
||
|
COPY odm.img /
|
||
|
COPY init_wrapper /
|
||
|
ENTRYPOINT ["/init_wrapper"]
|