File size: 276 Bytes
a0cc4c2 e77d835 a0cc4c2 e77d835 |
1 2 3 4 5 6 7 8 |
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 |