github.com/NBISweden/sda-cli@v0.1.2-0.20240506070033-4c8af88918df/testing/oidc/Dockerfile (about) 1 FROM node:16.2.0-slim 2 3 WORKDIR /app 4 5 RUN apt update && apt upgrade -qy && apt install -qy curl 6 7 COPY package.json ./ 8 9 RUN rm -rf node_modules 10 11 RUN npm install -g npm@latest && \ 12 npm i camelcase oidc-provider 13 14 COPY . . 15 16 CMD [ "node", "server.js" ]