# Set base image
FROM node:18-alpine

# Set working directory
WORKDIR /app

# Copy package.json and package-lock.json to working directory
COPY innuce-website-backend/package*.json ./

# Install dependencies
RUN npm install

# Copy other documents to working directory
COPY innuce-website-backend/ .