mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 01:25:28 +03:00
c2c88e9876
Fixes #2547
34 lines
1.1 KiB
Docker
34 lines
1.1 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 && \
|
|
docker-php-ext-install zip && \
|
|
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"]
|