mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[14] [13] Add nano to Docker image (#2122)
This commit is contained in:
parent
b4ee4c1bda
commit
f108b79e83
11 changed files with 13 additions and 11 deletions
1
.github/.wordlist.txt
vendored
1
.github/.wordlist.txt
vendored
|
@ -227,6 +227,7 @@ portainer
|
|||
Powershell
|
||||
pre
|
||||
prepend
|
||||
psutil
|
||||
PUID
|
||||
puid
|
||||
QNAP
|
||||
|
|
2
.github/workflows/docker-develop.yml
vendored
2
.github/workflows/docker-develop.yml
vendored
|
@ -32,7 +32,7 @@ jobs:
|
|||
|
||||
- name: Build and Push
|
||||
id: docker_build
|
||||
uses: docker/build-push-action@v5
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
context: ./
|
||||
file: ./Dockerfile
|
||||
|
|
2
.github/workflows/docker-latest.yml
vendored
2
.github/workflows/docker-latest.yml
vendored
|
@ -30,7 +30,7 @@ jobs:
|
|||
|
||||
- name: Build and Push
|
||||
id: docker_build
|
||||
uses: docker/build-push-action@v5
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
context: ./
|
||||
file: ./Dockerfile
|
||||
|
|
2
.github/workflows/docker-nightly.yml
vendored
2
.github/workflows/docker-nightly.yml
vendored
|
@ -34,7 +34,7 @@ jobs:
|
|||
|
||||
- name: Build and Push
|
||||
id: docker_build
|
||||
uses: docker/build-push-action@v5
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
context: ./
|
||||
file: ./Dockerfile
|
||||
|
|
2
.github/workflows/docker-version.yml
vendored
2
.github/workflows/docker-version.yml
vendored
|
@ -38,7 +38,7 @@ jobs:
|
|||
|
||||
- name: Build and Push
|
||||
id: docker_build
|
||||
uses: docker/build-push-action@v5
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
context: ./
|
||||
file: ./Dockerfile
|
||||
|
|
2
.github/workflows/increment-build.yml
vendored
2
.github/workflows/increment-build.yml
vendored
|
@ -133,7 +133,7 @@ jobs:
|
|||
|
||||
- name: Build and Push
|
||||
id: docker_build
|
||||
uses: docker/build-push-action@v5
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
context: ./
|
||||
file: ./Dockerfile
|
||||
|
|
2
.github/workflows/validate-pull.yml
vendored
2
.github/workflows/validate-pull.yml
vendored
|
@ -122,7 +122,7 @@ jobs:
|
|||
|
||||
- name: Build and Push
|
||||
id: docker_build
|
||||
uses: docker/build-push-action@v5
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
context: ./
|
||||
file: ./Dockerfile
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
# Requirements Update (requirements will need to be reinstalled)
|
||||
Added tenacity requirement at 8.3.0
|
||||
Added tenacity requirement at 8.4.1
|
||||
Update psutil requirement to 6.0.0
|
||||
|
||||
# Removed Features
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ 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 libjpeg62-turbo-dev zlib1g-dev wget curl \
|
||||
&& apt-get install -y gcc g++ libxml2-dev libxslt-dev libz-dev libjpeg62-turbo-dev zlib1g-dev wget curl nano \
|
||||
&& 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 \
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
2.0.2-build12
|
||||
2.0.2-build14
|
||||
|
|
|
@ -5,11 +5,11 @@ num2words==0.5.13
|
|||
pathvalidate==3.2.0
|
||||
pillow==10.3.0
|
||||
PlexAPI==4.15.13
|
||||
psutil==5.9.8
|
||||
psutil==6.0.0
|
||||
python-dotenv==1.0.1
|
||||
python-dateutil==2.9.0.post0
|
||||
requests==2.32.3
|
||||
tenacity==8.3.0
|
||||
tenacity==8.4.1
|
||||
ruamel.yaml==0.18.6
|
||||
schedule==1.2.2
|
||||
setuptools==70.0.0
|
||||
|
|
Loading…
Reference in a new issue