Adam Stankiewicz | 30c58d5 | 2020-07-22 15:34:40 +0200 | [diff] [blame] | 1 | # Please build bmcweb-base first with |
2 | # docker build --no-cache --force-rm -t bmcweb-base -f Dockerfile.base . | ||||
3 | FROM bmcweb-base | ||||
4 | |||||
5 | ADD . /source | ||||
6 | |||||
Manojkiran Eda | 2e4c21f | 2020-10-08 11:58:36 +0530 | [diff] [blame^] | 7 | RUN ninja -C /source/build |
Adam Stankiewicz | 30c58d5 | 2020-07-22 15:34:40 +0200 | [diff] [blame] | 8 | |
9 | RUN mkdir -p /usr/share/www | ||||
10 | |||||
11 | CMD ["/build/bmcweb"] |