victor's picture
victor HF staff
Changed the app port to listen on port 7860.
0123ef3
raw
history blame contribute delete
476 Bytes
# Use an official Node.js runtime as the base image
FROM node:14
# Set the working directory in the container
WORKDIR /usr/src/app
# Copy package.json and package-lock.json to the working directory
COPY package*.json ./
# Install the application dependencies
RUN npm install
# Copy the rest of the application code to the working directory
COPY . .
# Expose the port that the app runs on
EXPOSE 7860
# Define the command to run the application
CMD ["node", "server.js"]