26 lines
342 B
Docker
26 lines
342 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
|
|
|
|
RUN docker ps
|
|
|
|
WORKDIR /app
|
|
|
|
COPY cppbuilder .
|
|
|
|
RUN chmod +x cppbuilder_install.sh && ./cppbuilder_install.sh
|
|
|