From 3449a608416754b59be0f44ffe6582a024523391 Mon Sep 17 00:00:00 2001 From: Samrat Sahoo Date: Fri, 13 Sep 2024 09:34:11 -0400 Subject: [PATCH] try again! --- deletion-policy/Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/deletion-policy/Dockerfile b/deletion-policy/Dockerfile index fc979ea..29f8c3b 100644 --- a/deletion-policy/Dockerfile +++ b/deletion-policy/Dockerfile @@ -1,5 +1,7 @@ -FROM node:18-alpine +# Use the official Node.js image as base +FROM node:latest +# Set working directory WORKDIR /app # Copy package.json and package-lock.json to the working directory @@ -8,6 +10,6 @@ COPY ./package*.json ./ # Install dependencies RUN npm install -COPY . . +COPY ./ ./ CMD ["npm", "start"] \ No newline at end of file