summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 8155764aac974114dd1b720eecb2e22837e41849 (plain)
1
2
3
4
5
6
7
8
9
10
11
# Please build bmcweb-base first with
# docker build --no-cache --force-rm -t bmcweb-base -f Dockerfile.base .
FROM bmcweb-base

ADD . /source

RUN ninja -C /source/build

RUN mkdir -p /usr/share/www

CMD ["/build/bmcweb"]