small changes+ dokcer file added (NOT WORKING)

small changes
dockerfile added but its not working
This commit is contained in:
danielvici123
2024-12-21 11:12:43 +01:00
parent aa690f0989
commit 1d8665d6ce
3 changed files with 29 additions and 9 deletions

20
Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
# Use a Node.js base image with npm pre-installed
FROM node:alpine
# Set the working directory
WORKDIR /app
# Copy package.json and package-lock.json
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy the rest of the application code
COPY . .
# Expose the port your app will listen on
EXPOSE 3000
# Start the app
CMD ["node", "index.js"]