Files
Julianum/Dockerfile
2024-06-11 23:18:25 +02:00

21 lines
438 B
Docker

# Use an official Node.js runtime as the base image
FROM node:14
# Set the working directory in the container
WORKDIR /app
# Copy package.json and package-lock.json to the working directory
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy the rest of the application code to the working directory
COPY . .
# Expose a port (if needed)
EXPOSE 3010
# Define the command to run the application
CMD [ "npm", "start" ]