2018-05-29 04:27:43 +08:00
|
|
|
# Build container based on Clearlinux
|
|
|
|
FROM clearlinux:base
|
|
|
|
|
2018-06-22 19:18:18 +08:00
|
|
|
RUN swupd bundle-add -b os-clr-on-clr python3-basic
|
|
|
|
|
|
|
|
RUN pip3 install kconfiglib
|
2018-05-29 04:27:43 +08:00
|
|
|
|
|
|
|
RUN mkdir -p /usr/local/bin
|
|
|
|
RUN git config --global http.sslVerify false
|
|
|
|
|
|
|
|
WORKDIR /root/acrn
|
|
|
|
|
|
|
|
CMD ["/bin/bash"]
|