From bbe4cf62c491aa98c950c62db719ea719e0f7b07 Mon Sep 17 00:00:00 2001 From: Nour Alharithi Date: Thu, 18 Jul 2024 12:02:49 -0700 Subject: [PATCH 1/2] dockerfile remove install yarn --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index db43ffa..347d9cd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM public.ecr.aws/bitnami/node:18 RUN apt-get install git ENV NODE_ENV=production -RUN npm install -g yarn +# RUN npm install -g yarn --force RUN npm install -g typescript WORKDIR /app From 06c93b757438294b8a447b3dea3fc0a5051ceb66 Mon Sep 17 00:00:00 2001 From: Nour Alharithi Date: Thu, 18 Jul 2024 12:10:07 -0700 Subject: [PATCH 2/2] removing erroring line from dockerfile --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 347d9cd..3418583 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,6 @@ FROM public.ecr.aws/bitnami/node:18 RUN apt-get install git ENV NODE_ENV=production -# RUN npm install -g yarn --force RUN npm install -g typescript WORKDIR /app