CodeCards/frontend/Dockerfile

13 lines
145 B
Docker
Raw Permalink Normal View History

2024-08-04 17:49:28 +00:00
FROM node:14.15.4
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["npm", "start"]