Files
generic-docker-images/Dockerfile.alpinebuilder
2025-05-30 00:29:24 +12:00

24 lines
327 B
Docker

FROM alpine:latest
RUN apk add --no-cache \
build-base \
cmake \
git \
nlohmann-json \
wget \
curl \
ninja \
mold \
nodejs \
npm \
bash
RUN curl -fsSL https://get.docker.com | sh
WORKDIR /app
COPY cppbuilder .
RUN chmod +x cppbuilder_install.sh && ./cppbuilder_install.sh