'Generic Commit'
Some checks failed
dropshell-build / build (push) Failing after 12s

This commit is contained in:
Your Name
2025-06-01 14:40:19 +12:00
parent b7fc4d901f
commit 8f02394e60
56 changed files with 13052 additions and 0 deletions

20
Dockerfile Normal file
View File

@ -0,0 +1,20 @@
FROM debian:latest
RUN apt-get update && apt-get install -y \
build-essential \
cmake \
git \
nlohmann-json3-dev wget curl cmake ninja-build mold build-essential nodejs npm jq ccache \
&& rm -rf /var/lib/apt/lists/*
#RUN curl -fsSL https://get.docker.com | sh
COPY --chmod=0755 ./src/* /usr/local/bin/
RUN /usr/local/bin/install_dropshell_build_requirements
WORKDIR /app
CMD ["dropshell-build","/app"]