2022-11-15 19:32:44 +03:00
|
|
|
FROM lwthiker/curl-impersonate:0.5-ff-slim-buster AS curlimpersonate
|
|
|
|
|
2023-09-13 19:08:22 +03:00
|
|
|
FROM debian:12-slim AS rssbridge
|
2021-05-13 20:57:10 +03:00
|
|
|
|
|
|
|
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"
|
|
|
|
|
2023-09-13 19:08:22 +03:00
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
2022-05-12 03:19:25 +03:00
|
|
|
RUN apt-get update && \
|
|
|
|
apt-get install --yes --no-install-recommends \
|
2023-09-13 19:08:22 +03:00
|
|
|
ca-certificates \
|
2022-05-12 03:19:25 +03:00
|
|
|
nginx \
|
[OLXBridge] new bridge (#2944)
* [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
2022-11-17 19:57:05 +03:00
|
|
|
nss-plugin-pem \
|
2023-09-13 19:08:22 +03:00
|
|
|
php-curl \
|
|
|
|
php-fpm \
|
|
|
|
php-intl \
|
|
|
|
# php-json is enabled by default with PHP 8.2 in Debian 12
|
|
|
|
php-mbstring \
|
|
|
|
php-memcached \
|
|
|
|
# php-opcache is enabled by default with PHP 8.2 in Debian 12
|
|
|
|
# php-openssl is enabled by default with PHP 8.2 in Debian 12
|
|
|
|
php-sqlite3 \
|
|
|
|
php-xml \
|
|
|
|
php-zip \
|
|
|
|
# php-zlib is enabled by default with PHP 8.2 in Debian 12
|
|
|
|
&& \
|
|
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
# logs should go to stdout / stderr
|
|
|
|
RUN ln -sfT /dev/stderr /var/log/nginx/error.log; \
|
|
|
|
ln -sfT /dev/stdout /var/log/nginx/access.log; \
|
|
|
|
chown -R --no-dereference www-data:adm /var/log/nginx/
|
2021-09-05 06:10:54 +03:00
|
|
|
|
2022-11-15 19:32:44 +03:00
|
|
|
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
|
|
|
|
|
2023-09-13 19:08:22 +03:00
|
|
|
COPY ./config/nginx.conf /etc/nginx/sites-available/default
|
|
|
|
COPY ./config/php-fpm.conf /etc/php/8.2/fpm/pool.d/rss-bridge.conf
|
|
|
|
COPY ./config/php.ini /etc/php/8.2/fpm/conf.d/90-rss-bridge.conf
|
|
|
|
|
|
|
|
COPY --chown=www-data:www-data ./ /app/
|
|
|
|
|
2022-05-30 21:05:42 +03:00
|
|
|
EXPOSE 80
|
|
|
|
|
2022-05-12 03:19:25 +03:00
|
|
|
ENTRYPOINT ["/app/docker-entrypoint.sh"]
|