Closed
Description
Hi,
When building the following Dockerfile on Windows 10, I have a Segmentation fault error.
FROM node:wheezy
RUN yarn global add typescript @angular/cli
Doesn't seems to be related to yarn, as npm gives the same result :
FROM node:wheezy
RUN npm install -g typescript @angular/cli
The result is :
C:\Users\toto\myProject>docker build .
Sending build context to Docker daemon 37.23MB
Step 1/2 : FROM node:wheezy
---> d8df1e668586
Step 2/2 : RUN npm install -g typescript @angular/cli
---> Running in 45c9b17ed77e
Segmentation fault
The command '/bin/sh -c npm install -g typescript @angular/cli' returned a non-zero code: 139
My configuration :
docker --version
: Docker version 17.10.0-ce, build f4ffd25- Windows 10 Pro
I tried on a Fedora server, its works like a charm.
(unfortunatly, W10 is required)
So, is it a wanted behaviour ?