dotnet / tye

Tye is a tool that makes developing, testing, and deploying microservices and distributed applications easier. Project Tye includes a local orchestrator to make developing microservices easier and the ability to deploy microservices to Kubernetes with minimal configuration.
MIT License
5.29k stars 521 forks source link

wrong package-lock.json in Angular MoviesApp #1165

Closed andreatosato closed 3 years ago

andreatosato commented 3 years ago

tye/samples/apps-with-core-angular/MoviesApp/package-lock.json has many error

https://kdi.jfrog.io/kdi/api/npm/npm is under authentication:

http fetch GET 401 https://kdi.jfrog.io/kdi/api/npm/npm/jasmine-core/-/jasmine-core-2.8.0.tgz

How can I build correctly project?

andreatosato commented 3 years ago

I change Dockerfile to force package.lock.json update

npm install --force

FROM node:alpine as node

WORKDIR /src
COPY . .

RUN npm install --force && npm run build

FROM nginx:alpine
COPY nginx.conf /etc/nginx/nginx.conf
COPY --from=node /src/dist /usr/share/nginx/html/movies
pratiksanglikar commented 3 years ago

Hi @andreatosato, I believe this issue is fixed with #1162. Can you please give it a try again and reopen if it still reproduces.