File size: 949 Bytes
2882685 36a6f9c 7c27665 0014fc0 a1e5258 36a6f9c b1331ab 147832d b1331ab 871c8bf b3695c4 2882685 2098d90 2882685 ded5438 7974f52 a4034ee 27d1344 2882685 725576f 2882685 33fecbc 04cc1a8 81889ed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
FROM node:lts-alpine AS build
RUN apk add --no-cache \
git sudo npm \
llvm \
ncurses-dev xz tk-dev git-lfs \
ffmpeg libsm libxext cmake mesa-gl \
&& git lfs install
ENV NODE_OPTIONS="--max-old-space-size=4096"
RUN cd / && git clone https://github.com/TeamPiped/Piped.git /app
RUN --mount=type=cache,target=/var/cache/apk \
apk add --no-cache \
curl
RUN corepack enable && corepack prepare pnpm@latest --activate
RUN --mount=type=cache,target=/root/.local/share/pnpm \
--mount=type=cache,target=/app/node_modules \
cd /app && pnpm install --prefer-offline && pnpm build
COPY . .
RUN chmod +x localizefonts.sh
#RUN ./localizefonts.sh
FROM nginxinc/nginx-unprivileged:alpine
COPY --chown=101:101 --from=build /app/dist/ /usr/share/nginx/html/
COPY --chown=101:101 ./nginx.conf /etc/nginx/conf.d/default.conf
COPY ./entrypoint.sh /entrypoint.sh
RUN chmod +x entrypoint.sh
ENTRYPOINT [ "/entrypoint.sh" ]
|