Spaces:
Build error
Build error
File size: 172 Bytes
ff373c0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | FROM node:18-alpine
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm install
COPY . ./
RUN npm run build
CMD ["npx", "serve", "-s", "build", "-l", "7860"]
|