Skip to content

Commit

Permalink
try again!
Browse files Browse the repository at this point in the history
  • Loading branch information
SamratSahoo committed Sep 13, 2024
1 parent 271326e commit 3449a60
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions deletion-policy/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -8,6 +10,6 @@ COPY ./package*.json ./
# Install dependencies
RUN npm install

COPY . .
COPY ./ ./

CMD ["npm", "start"]

0 comments on commit 3449a60

Please sign in to comment.