* fix: Library Header layout shift * Bump Github Actions versions. * Self-Hosting Changes * Fix Minio Environment Variable * Just make pdfs successful, due to lack of PDFHandler * Fix issue where flag was set wrong * Added an NGINX Example file * Add some documentation for self-hosting via Docker Compose * Make some adjustments to Puppeteer due to failing sites. * adjust timings * Add start of Mail Service * Fix Docker Files * More email service stuff * Add Guide to use Zapier for Email-Importing. * Ensure that if no env is provided it uses the old email settings * Add some instructions for self-hosted email * Add SNS Endpoints for Mail Watcher * Add steps and functionality for using SES and SNS for email * Uncomment a few jobs. * Added option for Firefox for parser. Was having issues with Chromium on Docker. * Add missing space. Co-authored-by: Russ Taylor <729694+russtaylor@users.noreply.github.com> * Fix some wording on the Guide * update browser extension to handle self-hosted instances * add slight documentation to options page * Fix MV * Do raw handlers for Medium * Fix images in Medium * Update self-hosting/GUIDE.md Co-authored-by: Mike Baker <1426795+mbaker3@users.noreply.github.com> * Update Guide with other variables * Add The Verge to JS-less handlers * Update regex and image-proxy * Update self-hosting/nginx/nginx.conf Co-authored-by: Mike Baker <1426795+mbaker3@users.noreply.github.com> * Update regex and image-proxy * Update self-hosting/docker-compose/docker-compose.yml Co-authored-by: Mike Baker <1426795+mbaker3@users.noreply.github.com> * Fix Minio for Export * Merge to main * Update GUIDE with newer NGINX * Update nginx config to include api/save route * Enable Native PDF View for PDFS * Enable Native PDF View for PDFS * feat:lover packages test * feat:working build * feat:alpine build * docs:api dockerfile docs * Write a PDF.js wrapper to replace pspdfkit * Revert changes for replication, set settings to have default mode * build folder got removed due to gitignore on pdf * Add Box shadow to pdf pages * Add Toggle for Progress in PDFS, enabled native viewer toggle * Update node version to LTS * Update node version to LTS * Fix Linting issues * Fix Linting issues * Make env variable nullable * Add touchend listener for mobile * Make changes to PDF for mobile * fix(android): change serverUrl to selfhosted first * feat:2 stage alpine content fetch * feat:separated start script * fix:changed to node 22 * Add back youtube functionality and add guide * trigger build * Fix cache issue on YouTube * Allow empty AWS_S3_ENDPOINT * Allow empty AWS_S3_ENDPOINT * Add GCHR for all images * Add GCHR For self hosting. * Add GCHR For self hosting. * Test prebuilt. * Test prebuilt * Test prebuilt... * Fix web image * Remove Web Image (For now) * Move docker-compose to images * Move docker-compose files to correct locations * Remove the need for ARGS * Update packages, and Typescript versions * Fix * Fix issues with build on Web * Correct push * Fix Linting issues * Fix Trace import * Add missing types * Fix Tasks * Add information into guide about self-build * Fix issues with PDF Viewer --------- Co-authored-by: keumky2 <keumky2@woowahan.com> Co-authored-by: William Theaker <wtheaker@nvidia.com> Co-authored-by: Russ Taylor <729694+russtaylor@users.noreply.github.com> Co-authored-by: David Adams <david@dadams2.com> Co-authored-by: Mike Baker <1426795+mbaker3@users.noreply.github.com> Co-authored-by: m1xxos <66390094+m1xxos@users.noreply.github.com> Co-authored-by: Adil <mr.adil777@gmail.com>
73 lines
2.3 KiB
Docker
73 lines
2.3 KiB
Docker
FROM node:22.12-alpine AS build
|
|
LABEL org.opencontainers.image.source="https://github.com/omnivore-app/omnivore"
|
|
|
|
# Installs latest Chromium package and other dependencies.
|
|
RUN apk -U upgrade \
|
|
&& apk add --no-cache \
|
|
g++ \
|
|
make \
|
|
python3 \
|
|
py3-pip && \
|
|
rm -rf /var/cache/apk/*
|
|
|
|
WORKDIR /app
|
|
|
|
ENV CHROMIUM_PATH=/usr/bin/chromium
|
|
ENV FIREFOX_PATH=/usr/bin/firefox
|
|
ENV LAUNCH_HEADLESS=true
|
|
|
|
COPY package.json yarn.lock tsconfig.json .prettierrc .eslintrc ./
|
|
COPY /packages/content-fetch/package.json ./packages/content-fetch/package.json
|
|
COPY /packages/content-handler/package.json ./packages/content-handler/package.json
|
|
COPY /packages/puppeteer-parse/package.json ./packages/puppeteer-parse/package.json
|
|
COPY /packages/utils/package.json ./packages/utils/package.json
|
|
|
|
RUN yarn install --pure-lockfile
|
|
|
|
COPY /packages/content-fetch ./packages/content-fetch
|
|
COPY /packages/content-handler ./packages/content-handler
|
|
COPY /packages/puppeteer-parse ./packages/puppeteer-parse
|
|
COPY /packages/utils ./packages/utils
|
|
|
|
RUN yarn workspace @omnivore/utils build && \
|
|
yarn workspace @omnivore/content-handler build && \
|
|
yarn workspace @omnivore/puppeteer-parse build && \
|
|
yarn workspace @omnivore/content-fetch build && \
|
|
rm -rf /app/packages/content-fetch/node_modules /app/node_modules && \
|
|
yarn install --pure-lockfile --production
|
|
|
|
# Running stage
|
|
FROM node:22.12-alpine
|
|
|
|
RUN echo @edge https://dl-cdn.alpinelinux.org/alpine/edge/community >> /etc/apk/repositories \
|
|
&& echo @edge https://dl-cdn.alpinelinux.org/alpine/edge/main >> /etc/apk/repositories \
|
|
&& echo @edge https://dl-cdn.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories \
|
|
&& apk -U upgrade \
|
|
&& apk add --no-cache \
|
|
firefox@edge \
|
|
freetype@edge \
|
|
ttf-freefont@edge \
|
|
nss@edge \
|
|
libstdc++@edge \
|
|
sqlite-libs@edge \
|
|
chromium@edge \
|
|
firefox-esr@edge \
|
|
ca-certificates@edge \
|
|
rm -rf /var/cache/apk/*
|
|
|
|
WORKDIR /app
|
|
|
|
ENV CHROMIUM_PATH=/usr/bin/chromium
|
|
ENV FIREFOX_PATH=/usr/bin/firefox
|
|
ENV LAUNCH_HEADLESS=true
|
|
|
|
COPY --from=build /app /app
|
|
|
|
EXPOSE 8080
|
|
|
|
# In Firefox we can't use the adblocking sites. Adding them to the hosts file of the docker seems to work.
|
|
COPY /packages/content-fetch/start.sh .
|
|
RUN wget https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts && \
|
|
chmod +x start.sh
|
|
|
|
CMD ["./start.sh"] |