Spaces:
Runtime error
Runtime error
File size: 145 Bytes
29ce54a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
FROM node:18-bullseye-slim
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
EXPOSE 7860
CMD [ "npm", "start" ]
|