From bab9703eff2ef80339941a750a71a2e279479f73 Mon Sep 17 00:00:00 2001 From: SomesH S Date: Mon, 27 May 2024 15:15:08 +0000 Subject: [PATCH] fix COPY --from image tags in target fs --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e768ec3..9551b08 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,8 +20,8 @@ RUN apt update && \ bash nodesource_setup.sh && \ apt install nodejs && \ corepack enable -COPY --from=rentify:fe /root/fe/build /root/fe/build -COPY --from=rentify:be /root/be /root/be +COPY --from=sssomeshhh/rentify:fe /root/fe/build /root/fe/build +COPY --from=sssomeshhh/rentify:be /root/be /root/be WORKDIR /root/be RUN yarn install EXPOSE 8000