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
|
2024-02-20 10:03:04 +03:00
|
|
|
RUN set -xe && \
|
|
|
|
apt-get update && \
|
2022-05-12 03:19:25 +03:00
|
|
|
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
|
2024-02-20 10:03:04 +03:00
|
|
|
# for downloading libcurl-impersonate
|
|
|
|
curl \
|
2023-09-13 19:08:22 +03:00
|
|
|
&& \
|
2024-02-20 10:03:04 +03:00
|
|
|
# install curl-impersonate library
|
|
|
|
curlimpersonate_version=0.6.0 && \
|
|
|
|
{ \
|
|
|
|
{ \
|
|
|
|
[ $(arch) = 'aarch64' ] && \
|
|
|
|
archive="libcurl-impersonate-v${curlimpersonate_version}.aarch64-linux-gnu.tar.gz" && \
|
|
|
|
sha512sum="d04b1eabe71f3af06aa1ce99b39a49c5e1d33b636acedcd9fad163bc58156af5c3eb3f75aa706f335515791f7b9c7a6c40ffdfa47430796483ecef929abd905d" \
|
|
|
|
; } \
|
|
|
|
|| { \
|
|
|
|
[ $(arch) = 'armv7l' ] && \
|
|
|
|
archive="libcurl-impersonate-v${curlimpersonate_version}.arm-linux-gnueabihf.tar.gz" && \
|
|
|
|
sha512sum="05906b4efa1a6ed8f3b716fd83d476b6eea6bfc68e3dbc5212d65a2962dcaa7bd1f938c9096a7535252b11d1d08fb93adccc633585ff8cb8cec5e58bfe969bc9" \
|
|
|
|
; } \
|
|
|
|
|| { \
|
|
|
|
[ $(arch) = 'x86_64' ] && \
|
|
|
|
archive="libcurl-impersonate-v${curlimpersonate_version}.x86_64-linux-gnu.tar.gz" && \
|
|
|
|
sha512sum="480bbe9452cd9aff2c0daaaf91f1057b3a96385f79011628a9237223757a9b0d090c59cb5982dc54ea0d07191657299ea91ca170a25ced3d7d410fcdff130ace" \
|
|
|
|
; } \
|
|
|
|
} && \
|
|
|
|
curl -LO "https://github.com/lwthiker/curl-impersonate/releases/download/v${curlimpersonate_version}/${archive}" && \
|
|
|
|
echo "$sha512sum $archive" | sha512sum -c - && \
|
|
|
|
mkdir -p /usr/local/lib/curl-impersonate && \
|
|
|
|
tar xaf "$archive" -C /usr/local/lib/curl-impersonate --wildcards 'libcurl-impersonate-ff.so*' && \
|
|
|
|
rm "$archive" && \
|
|
|
|
apt-get purge --assume-yes curl && \
|
2023-09-13 19:08:22 +03:00
|
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
|
2024-02-20 10:03:04 +03:00
|
|
|
ENV LD_PRELOAD /usr/local/lib/curl-impersonate/libcurl-impersonate-ff.so
|
|
|
|
ENV CURL_IMPERSONATE ff91esr
|
|
|
|
|
2023-09-13 19:08:22 +03:00
|
|
|
# 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
|
|
|
|
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
|
2024-01-05 09:22:16 +03:00
|
|
|
COPY ./config/php.ini /etc/php/8.2/fpm/conf.d/90-rss-bridge.ini
|
2023-09-13 19:08:22 +03:00
|
|
|
|
|
|
|
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"]
|