This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM node:8.6.0-alpine | |
LABEL maintainer="https://github.com/verdaccio/verdaccio" | |
RUN apk --no-cache add openssl && \ | |
wget -O /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.2.0/dumb-init_1.2.0_amd64 && \ | |
chmod +x /usr/local/bin/dumb-init | |
# If you want "dokku enter" don't forget install bash | |
# https://github.com/dokku/dokku/issues/2572 | |
RUN apk update && \ |