KooReader / Dockerfile
Jack698's picture
Update Dockerfile
2ac5955 verified
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"]