Files
t6_mem0/embedchain/examples/full_stack/frontend/Dockerfile
2024-07-12 20:21:33 +05:30

15 lines
186 B
Docker

FROM node:18-slim AS frontend
WORKDIR /usr/src/app/frontend
COPY package.json .
COPY package-lock.json .
RUN npm install
COPY . .
RUN npm run build
EXPOSE 3000
CMD ["npm", "start"]