chtbtui / Dockerfile
2ch's picture
Update Dockerfile
e77d835 verified
raw
history blame
276 Bytes
FROM node:alpine
RUN apk add git curl bash wget sudo
WORKDIR /app
RUN git clone https://github.com/anse-app/anse .
RUN npm install --no-audit --no-fund --loglevel=error --no-progress --omit=dev && npm cache clean --force
ENV HOST=0.0.0.0 PORT=7860
EXPOSE $PORT
CMD npm run dev