From 2ab7bf1f43d6f75583eb5e2e2b6621499266b3d4 Mon Sep 17 00:00:00 2001 From: Win Date: Fri, 6 Sep 2024 15:20:42 +0700 Subject: [PATCH] MOL-358/PICT-242: update dockerfile location --- Dockerfile => processor/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename Dockerfile => processor/Dockerfile (91%) diff --git a/Dockerfile b/processor/Dockerfile similarity index 91% rename from Dockerfile rename to processor/Dockerfile index fa3edac..76c1d8f 100644 --- a/Dockerfile +++ b/processor/Dockerfile @@ -2,11 +2,11 @@ FROM node:18-alpine AS builder WORKDIR /app -COPY ./processor/package*.json ./ +COPY ./package*.json ./ RUN npm install --production --frozen-lockfile -COPY ./processor . +COPY . . RUN npm run build