From bbabb3f75ef5bf112326a50be4ff3035aa48c2bd Mon Sep 17 00:00:00 2001 From: Kfir Dayan Date: Sun, 21 Jan 2024 17:24:26 +0200 Subject: [PATCH] remove docker file --- Dockerfile | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 04a2265..0000000 --- a/Dockerfile +++ /dev/null @@ -1,23 +0,0 @@ -# Use an official Node runtime as a parent image -FROM node:16 - -# Set the working directory in the container -WORKDIR /usr/src/app - -# Copy package.json and package-lock.json (or yarn.lock) -COPY package*.json ./ - -# Install dependencies -RUN npm install - -# Bundle app source -COPY . . - -# Build the application if needed -RUN npm run build - -# Your app binds to port 3000 so you'll use the EXPOSE instruction to have it mapped by the docker daemon -EXPOSE 3000 - -# Define the command to run your app -CMD [ "node", "dist/main" ] # Adjust the path if your entry file is different