This repository has been archived on 2025-10-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
esp-projekt/Dockerfile
danielvici123 1d8665d6ce small changes+ dokcer file added (NOT WORKING)
small changes
dockerfile added but its not working
2024-12-21 11:12:43 +01:00

20 lines
360 B
Docker

# 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"]