diff --git a/.dockerignore b/.dockerignore deleted file mode 100644 index 2deef83..0000000 --- a/.dockerignore +++ /dev/null @@ -1,5 +0,0 @@ -node_modules -npm-debug.log -Dockerfile -docker-compose.yml -.dockerignore \ No newline at end of file diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 87db724..0000000 --- a/Dockerfile +++ /dev/null @@ -1,21 +0,0 @@ -# Use the official Node.js image as a base image -FROM node:20-alpine - -# Set the working directory inside the container -WORKDIR /app - -# Copy package.json and package-lock.json files -COPY package*.json ./ - -# Install dependencies -RUN npm install - -# Copy the rest of the application code -COPY . . - - -# Expose the port the app runs on -EXPOSE 5000 - -# Command to start the application -CMD ["npm", "start"] \ No newline at end of file