Fix config.json thing for the Docker container

This commit is contained in:
2025-12-30 03:19:24 +01:00
parent 71f3be080e
commit 61c1e3f796
2 changed files with 8 additions and 3 deletions

View File

@@ -1,12 +1,10 @@
FROM brainboxdotcc/dpp:latest
WORKDIR /usr/src/airi
COPY . .
WORKDIR /usr/src/airi/build
RUN cmake ..
RUN make -j$(nproc)
ENTRYPOINT [ "/usr/src/airi/build/airi" ]
ENTRYPOINT [ "./airi" ]