22 lines
297 B
Docker
22 lines
297 B
Docker
FROM docker:git
|
|
|
|
RUN apk update && apk add --no-cache \
|
|
openssl \
|
|
ca-certificates \
|
|
bash \
|
|
curl \
|
|
make \
|
|
gcc \
|
|
g++ \
|
|
python \
|
|
linux-headers \
|
|
paxctl \
|
|
libgcc \
|
|
libstdc++ \
|
|
gnupg \
|
|
nodejs \
|
|
nodejs-npm \
|
|
&& update-ca-certificates
|
|
|
|
RUN npm config set unsafe-perm true
|