Add Dockerfile and docker-compose

This commit is contained in:
gsemaj
2023-06-22 21:46:24 -04:00
committed by Gent Semaj
parent 23ab908366
commit 4f0ae027a5
2 changed files with 33 additions and 0 deletions

21
Dockerfile Normal file
View File

@@ -0,0 +1,21 @@
FROM debian:latest
WORKDIR /usr/src/app
RUN apt-get -y update && apt-get install -y \
git \
clang \
make \
libsqlite3-dev
COPY . ./
RUN make -j8
# tabledata should be copied from the host;
# clone it there before building the container
#RUN git submodule update --init --recursive
CMD ["./bin/fusion"]
LABEL Name=openfusion Version=0.0.1