Files
koodo-reader/Dockerfile
jectpro e6a5c754c3 Fix docker compilation failed
Former-commit-id: ad5122de1d83e78201f91f500768fbfa7fd24b06
2023-11-02 02:23:22 +08:00

21 lines
850 B
Docker

FROM node:18-slim as builder
RUN apt-get update && apt-get install -y jq curl wget python3
WORKDIR /app
### Get the latest release source code tarball
RUN tarball_url=$(curl -s https://api.github.com/repos/troyeguo/koodo-reader/releases/latest | jq -r ".tarball_url") \
&& wget -qO- $tarball_url \
| tar xvfz - --strip 1
### --network-timeout 1000000 as a workaround for slow devices
### when the package being installed is too large, Yarn assumes it's a network problem and throws an error
RUN yarn --network-timeout 1000000
### Separate `yarn build` layer as a workaround for devices with low RAM.
### If build fails due to OOM, `yarn install` layer will be already cached.
RUN yarn \
&& yarn build
### Nginx or Apache can also be used, Caddy is just smaller in size
FROM caddy:latest
COPY --from=builder /app/build /usr/share/caddy