Dockerfile
# Use a Node.js base imageFROM node:18# Set the working directory in the Docker containerWORKDIR /app# Install the 'serve' package globallyRUN npm install -g serve# Copy the built static files from your dist folder to the Docker imageCOPY ./dist /app# Expose the port that 'serve' will run onEXPOSE 80# Command to serve the app using 'serve'CMD ["serve", "-s", ".", "-l", "80"]
Application failed to respond