From 1c9eef7285bbaad03801171f97a103a9a5e28035 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6rkem?= Date: Thu, 25 Dec 2025 13:05:51 -0800 Subject: [PATCH] cleanup --- Dockerfile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 995f437..3f9b0b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,20 +1,15 @@ -# Specify the base image FROM node:24 -# Set the working directory in the container +#working directory in the container WORKDIR /app # Copy package.json and package-lock.json COPY package*.json ./ -# Install app dependencies RUN npm install -# Bundle app source COPY . . -# Expose port EXPOSE 3000 -# Start the app CMD [ "node", "backend.js" ] \ No newline at end of file