Update Dockerfile

This commit is contained in:
Jake Runyan 2025-01-11 10:46:08 -08:00
parent 89cfa1d57b
commit 2a06a5cc85

View File

@ -2,11 +2,11 @@ FROM node:14 AS build
WORKDIR /app WORKDIR /app
COPY package*.json ./ COPY package*.json /app
RUN npm install RUN npm install
COPY . . COPY . /app
RUN npm run build RUN npm run build