| FROM node:20-alpine | |
| WORKDIR /app | |
| ENV PYTHON=python3 \ | |
| HOST=0.0.0.0 \ | |
| PORT=7860 | |
| RUN apk add --no-cache git python3 make g++ \ | |
| && git clone https://github.com/koodo-reader/koodo-reader.git . \ | |
| && yarn install \ | |
| && apk del git make g++ \ | |
| && rm -rf /root/.cache /tmp/* | |
| EXPOSE 7860 | |
| CMD ["yarn", "start"] |