2019-08-27 17:47:10 +02:00
|
|
|
FROM docker:19.03.1
|
2016-06-02 12:30:15 +00:00
|
|
|
|
2018-12-12 23:18:55 +01:00
|
|
|
RUN apk update && apk add --no-cache \
|
2019-08-27 17:47:10 +02:00
|
|
|
git \
|
2018-05-04 13:06:23 +02:00
|
|
|
openssl \
|
|
|
|
ca-certificates \
|
|
|
|
bash \
|
|
|
|
curl \
|
|
|
|
make \
|
|
|
|
gcc \
|
|
|
|
g++ \
|
|
|
|
python \
|
|
|
|
linux-headers \
|
|
|
|
paxctl \
|
|
|
|
libgcc \
|
|
|
|
libstdc++ \
|
|
|
|
gnupg \
|
|
|
|
nodejs \
|
2018-12-12 23:18:55 +01:00
|
|
|
nodejs-npm \
|
2018-05-04 13:06:23 +02:00
|
|
|
&& update-ca-certificates
|
2017-03-29 01:15:29 +02:00
|
|
|
|
2017-06-30 17:04:49 +02:00
|
|
|
RUN npm config set unsafe-perm true
|