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

This commit is contained in:
Your Name
2025-05-31 10:20:39 +12:00
parent c33ca6f4b4
commit 1e09c5c995
10 changed files with 126 additions and 16 deletions

View File

@ -0,0 +1,21 @@
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 \
&& rm -rf /var/lib/apt/lists/*
#RUN curl -fsSL https://get.docker.com | sh
COPY --chmod=0755 ./src/install_dropshell_build_requirements.sh /usr/local/bin/
COPY --chmod=0755 ./src/dropshell-build.sh /usr/local/bin/
RUN install_dropshell_build_requirements.sh
WORKDIR /app
ENTRYPOINT ["dropshell-build.sh","/app"]