I posted the problem on stack
I got it to work after I downgraded from 15-alpine to 14-alpine. Does anyone know what might have changed?
Thanks!
Share and learn in the Docker community.
I posted the problem on stack
I got it to work after I downgraded from 15-alpine to 14-alpine. Does anyone know what might have changed?
Thanks!
I am trying to rollout one of my build using travis. As part of the pre script I am building a docker image. Within the docker image, I need to get a package from my git repository. git is trying to do ssh and I am trying to get it to use https. Can anyone see what I might be doing wrong?
dockerfile
FROM node:15-alpine as builder
RUN apk update
RUN apk add --no-cache git
RUN git config --global url.“https://github.com/”.insteadOf git@github.com:
RUN git config --global url.“https://”.insteadOf git://
COPY package.json .
RUN npm install
travis.yml
sudo: required
language: node_js
node_js:
services:
before_install:
script:
deploy:
…
package.json
…
“dependencies”: {
“react-awesome-query-builder”: “https://github.com/billtlee/react-awesome-query-builder.git#forLocal”
}