-
-
Notifications
You must be signed in to change notification settings - Fork 316
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 #362 from meisnate12/develop
v1.12.0
- Loading branch information
Showing
27 changed files
with
2,690 additions
and
2,744 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 |
---|---|---|
|
@@ -7,4 +7,13 @@ | |
README.md | ||
LICENSE | ||
.gitignore | ||
.dockerignore | ||
.git | ||
.github | ||
*.psd | ||
config/**/* | ||
config | ||
Dockerfile | ||
venv | ||
.idea | ||
test.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,20 +1,15 @@ | ||
FROM python:3-slim | ||
VOLUME /config | ||
FROM python:3.9-slim | ||
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 ****" \ | ||
&& pip3 install --no-cache-dir --upgrade --requirement /requirements.txt \ | ||
&& apt-get autoremove -y \ | ||
&& apt-get clean \ | ||
&& rm -rf /requirements.txt /tmp/* /var/tmp/* /var/lib/apt/lists/* | ||
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 && \ | ||
echo "**** install python packages ****" && \ | ||
pip3 install --no-cache-dir --upgrade --requirement /requirements.txt && \ | ||
echo "**** cleanup ****" && \ | ||
apt-get autoremove -y && \ | ||
apt-get clean && \ | ||
rm -rf \ | ||
/requirements.txt \ | ||
/tmp/* \ | ||
/var/tmp/* \ | ||
/var/lib/apt/lists/* | ||
VOLUME /config | ||
ENTRYPOINT ["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 |
---|---|---|
|
@@ -89,3 +89,6 @@ mal: | |
token_type: | ||
expires_in: | ||
refresh_token: | ||
anidb: # Optional | ||
username: ###### | ||
password: ###### |
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.