mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-23 18:15:28 +03:00
b017f75767
* [OLXBridge] new bridge * [OLXBridge] option to limit to shipping offers only * [OLXBridge] set the feed title according to search query * [OLXBridge] Fix PHP notices * [OLXBridge] Remove trailing slash from the URL * [OLXBridge] filter out the imposed additional search categories * [OLXBridge] limit search to 'new' OLX platform variants * [OLXBridge] Parse date, add ID, description Deep-crawl all results. Penalty is low, as we were doing this for almost all of the results, anyway, yet it allows to obtain a unique ID, an uncomplicated Date string and a description. Requires ext-intl for parsing the date according to locale. * [OLXBridge] Parse date, add ID, description Deep-crawl all results. Penalty is low, as we were doing this for almost all of the results, anyway, yet it allows to obtain a unique ID, an uncomplicated Date string and a description. Requires ext-intl for parsing the date according to locale. * [OLXBridge] Images are optional, handle appropriately * [OLXBridge] handle the ID coming from sibling auto-moto portal * [OLXBridge] handle the photos coming from sibling auto-moto portal * [OLXBridge] use meta property to find img URL * [OLXBridge] handle the date coming from sibling auto-moto portal * [OLXBridge] use simplified syntax to retrieve content attribute value * [OLXBridge] handle the description coming from sibling auto-moto portal * [OLXBridge] fix phpcs complaints * [OLXBridge] add categories * [OLXBridge] handle the categories coming from sibling auto-moto portal * [OLXBridge] hint image MIME type OLX images have no obvious extension * [OLXBridge] Fix content formatting * [OLXBridge] URL is pattern-checked, so no need to check again * [OLXBridge] return actual search query as URI
37 lines
1.2 KiB
Docker
37 lines
1.2 KiB
Docker
FROM lwthiker/curl-impersonate:0.5-ff-slim-buster AS curlimpersonate
|
|
|
|
FROM php:7.4.29-fpm AS rssbridge
|
|
|
|
LABEL description="RSS-Bridge is a PHP project capable of generating RSS and Atom feeds for websites that don't have one."
|
|
LABEL repository="https://github.com/RSS-Bridge/rss-bridge"
|
|
LABEL website="https://github.com/RSS-Bridge/rss-bridge"
|
|
|
|
RUN apt-get update && \
|
|
apt-get install --yes --no-install-recommends \
|
|
nginx \
|
|
zlib1g-dev \
|
|
libzip-dev \
|
|
libmemcached-dev \
|
|
nss-plugin-pem \
|
|
libicu-dev && \
|
|
docker-php-ext-install zip && \
|
|
docker-php-ext-install zip && \
|
|
docker-php-ext-install intl && \
|
|
pecl install memcached && \
|
|
docker-php-ext-enable memcached && \
|
|
docker-php-ext-enable opcache && \
|
|
mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
|
|
|
|
COPY ./config/nginx.conf /etc/nginx/sites-enabled/default
|
|
|
|
COPY --chown=www-data:www-data ./ /app/
|
|
|
|
COPY --from=curlimpersonate /usr/local/lib/libcurl-impersonate-ff.so /usr/local/lib/curl-impersonate/
|
|
|
|
ENV LD_PRELOAD /usr/local/lib/curl-impersonate/libcurl-impersonate-ff.so
|
|
|
|
ENV CURL_IMPERSONATE ff91esr
|
|
|
|
EXPOSE 80
|
|
|
|
ENTRYPOINT ["/app/docker-entrypoint.sh"]
|