getpkg/dropshell-build/Dockerfile
Your Name e0527e2a24
Some checks failed
dropshell-build / build (push) Failing after 1m27s
:-'Generic Commit'
2025-05-31 10:44:27 +12:00

22 lines
479 B
Docker

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/*.sh /usr/local/bin/
RUN /usr/local/bin/pre_download_musl.sh
RUN /usr/local/bin/install_dropshell_build_requirements.sh
WORKDIR /app
ENTRYPOINT ["dropshell-build.sh","/app"]