-
-
Notifications
You must be signed in to change notification settings - Fork 317
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #783 from meisnate12/develop
v1.16.2
- Loading branch information
Showing
27 changed files
with
894 additions
and
332 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,11 +11,8 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Check Out Repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Send Discord Release Notification | ||
uses: bythope/discord-[email protected] | ||
uses: nhevia/discord-styled-releases@main | ||
with: | ||
webhookUrl: ${{ secrets.RELEASE_WEBHOOK }} | ||
handler: 'release' | ||
webhook_id: ${{ secrets.RELEASE_WEBHOOK_ID }} | ||
webhook_token: ${{ secrets.RELEASE_WEBHOOK_TOKEN }} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
FROM python:3.9-slim | ||
ENV TINI_VERSION v0.19.0 | ||
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini | ||
RUN chmod +x /tini | ||
COPY . / | ||
RUN echo "**** install system packages ****" \ | ||
&& apt-get update \ | ||
&& apt-get upgrade -y --no-install-recommends \ | ||
&& apt-get install -y tzdata --no-install-recommends \ | ||
&& apt-get install -y gcc g++ libxml2-dev libxslt-dev libz-dev | ||
COPY requirements.txt / | ||
RUN echo "**** install python packages ****" \ | ||
&& apt-get install -y gcc g++ libxml2-dev libxslt-dev libz-dev wget \ | ||
&& wget -O /tini https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-"$(dpkg --print-architecture | awk -F- '{ print $NF }')" \ | ||
&& chmod +x /tini \ | ||
&& pip3 install --no-cache-dir --upgrade --requirement /requirements.txt \ | ||
&& apt-get autoremove -y \ | ||
&& apt-get --purge autoremove wget gcc g++ libxml2-dev libxslt-dev libz-dev -y \ | ||
&& apt-get clean \ | ||
&& apt-get update \ | ||
&& apt-get check \ | ||
&& apt-get -f install \ | ||
&& apt-get autoclean \ | ||
&& rm -rf /requirements.txt /tmp/* /var/tmp/* /var/lib/apt/lists/* | ||
COPY . / | ||
VOLUME /config | ||
ENTRYPOINT ["/tini", "-s", "python3", "plex_meta_manager.py", "--"] |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.16.1 | ||
1.16.2 |
This file contains 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
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.