Using `FROM node:6.9.4-alpine` I am added the following in the Dockerfile: ``` RUN apk-install openssl ``` This however fails with: > /bin/sh: apk-install: not found > The command '/bin/sh -c apk-install openssl' returned a non-zero code: 127 How can I overcome this?
Using
FROM node:6.9.4-alpineI am added the following in the Dockerfile:This however fails with:
How can I overcome this?