File size: 281 Bytes
0d7fd50 a0cc4c2 91c53b8 a0cc4c2 91c53b8 |
1 2 3 4 5 6 7 8 9 10 11 |
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 -g pnpm
RUN pnpm install
COPY . .
RUN pnpm run build
ENV HOST=0.0.0.0 PORT=7860 NODE_ENV=production
EXPOSE $PORT
CMD ["node", "dist/server/entry.mjs"] |