Update Dockerfile

This commit is contained in:
Rishab
2023-10-31 16:05:42 +05:30
committed by GitHub
parent d8d52ab080
commit f5e164cb3c
+5 -3
View File
@@ -5,14 +5,16 @@ FROM node:16
WORKDIR /usr/src/app
# Copy package.json and package-lock.json first to leverage Docker cache
COPY apps/OpenSign/package*.json ./
COPY ./package*.json ./
# Install application dependencies
RUN npm install
# Copy the current directory contents into the container
COPY apps/OpenSign/ .
COPY apps/OpenSign/.husky .
COPY ./ .
COPY ./.husky .
RUN npm run build
# Make port 3000 available to the world outside this container
EXPOSE 3000