getpkg/dropshell-build/Dockerfile
Your Name 6e0c9e830a
Some checks failed
Build-Test-Publish / build (push) Successful in 3s
dropshell-build / build (push) Failing after 2m4s
'Generic Commit'
2025-06-01 13:07:26 +12:00

21 lines
430 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 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"]