mirror of
https://github.com/donavon04/DocuCenter.git
synced 2025-01-18 09:40:56 -07:00
15 lines
169 B
Docker
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" ]
|