This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM public.ecr.aws/amazonlinux/amazonlinux:2023-minimal | |
| # Install Python and required dependencies including build tools | |
| RUN dnf update -y && \ | |
| dnf install -y python3 python3-devel shadow-utils gcc gcc-c++ curl-minimal tar && \ | |
| dnf clean all | |
| # App user (non-root) and application directory | |
| RUN groupadd -g 1000 app && useradd -u 1000 -g app -m -s /sbin/nologin app && \ | |
| mkdir -p /app && chown app:app /app |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| !Youtube Filters to filter homepage, recommendations and comments | |
| ! based on reddit post: https://www.reddit.com/r/uBlockOrigin/comments/sif7x3/how_to_block_several_youtube_things/ | |
| www.youtube.com###contentContainer | |
| www.youtube.com##.ytd-two-column-browse-results-renderer.style-scope > .ytd-rich-grid-renderer.style-scope | |
| www.youtube.com###below | |
| www.youtube.com###related | |
| www.youtube.com##ytd-comments | |
| www.youtube.com##ytd-live-chat-frame | |
| www.youtube.com##yt-live-chat-app | |
| www.youtube.com##ytd-thumbnail > a#thumbnail > div#mouseover-overlay |