I am installing a package from my private repository. I am able to install it using:
npm i -S git+https://oauth2:XXXXXXX@gitlab.com/mygroup/acl-api.git
I am
You should add git
and openssh-client
and other packages if you want to the node:alpine
to let npm
pull the repository
FROM node:alpine
RUN apk add --update \
python \
python-dev \
py-pip \
build-base \
git \
openssh-client \
&& pip install virtualenv \
&& rm -rf /var/cache/apk/*
COPY package.json package.json
COPY src src
COPY .babelrc .babelrc
RUN npm install
RUN npm run gitlab-build
RUN ls
EXPOSE 8080
CMD ["npm", "run", "docker-start"]