Spaces:
Running
Running
File size: 405 Bytes
6fb9eea 35619f7 6fb9eea 7a612ea 6fb9eea fb859f6 6fb9eea ad74410 |
1 2 3 4 5 6 7 8 9 10 11 |
FROM node:latest
RUN apt update && apt upgrade -y
WORKDIR /bella
RUN git clone https://github.com/rippanteq7/bella .
RUN chmod -R 777 /bella/*
COPY . $WORKDIR
RUN rm -rf node_modules package-lock.json && npm i --legacy-peer-deps
RUN npm run download
RUN node -e "(async () => { try { await import('./core.js') } catch (e) { console.log(e) } })()"
ENV PORT=7860
CMD ["npx", "http-server", "-c-1", "--cors"] |