Spaces:
Build error
Build error
File size: 157 Bytes
d6517e6 |
1 2 3 4 5 6 7 8 9 |
FROM node:20-alpine
WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm install
COPY . .
RUN npm run build
EXPOSE 7860
CMD ["npm", "start"]
|