DocuCenter/frontend/Dockerfile
2024-12-17 17:11:20 -07:00

15 lines
169 B
Docker

FROM node:latest
WORKDIR /app
# Copy .npmrc file to the container
COPY .npmrc ./
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD [ "node", "build" ]