Skip to content

Commit 3986e5e

Browse files
authored
Merge pull request #10 from Gyarbij/dev
Upgrade core dependencies
2 parents 9be6b6b + 1a5fd13 commit 3986e5e

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed

.dockerignore

+14
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,17 @@
2424
**/secrets.dev.yaml
2525
**/values.dev.yaml
2626
README.md
27+
.DS_Store
28+
.github
29+
.gitignore
30+
.idea
31+
.jekyll-cache
32+
.jekyll-metadata
33+
.sass-cache
34+
tests
35+
_releaser
36+
_site
37+
CONTRIBUTING.md
38+
Dockerfile
39+
docker-compose.yml
40+
/vendor

Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# For more information, please refer to https://aka.ms/vscode-docker-python
2-
FROM python:3.8-slim
1+
# Base image: https://hub.docker.com/_/python
2+
FROM python:3.11.1-slim
33

4-
# Keeps Python from generating .pyc files in the container
4+
# Prevents Python from generating .pyc files in the container
55
ENV PYTHONDONTWRITEBYTECODE=1
66

77
# Turns off buffering for easier container logging
@@ -18,7 +18,7 @@ COPY . /app
1818
RUN adduser -u 5678 --disabled-password --gecos "" plexist && chown -R plexist /app
1919
USER plexist
2020

21-
# During debugging, this entry point will be overridden. For more information, please refer to https://aka.ms/vscode-docker-python-debug
21+
# During debugging, this entry point will be overridden.
2222
CMD ["python", "plexist/plexist.py"]
2323

2424
# docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t gyarbij/plexist:<tag> --push .

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![CodeQL](https://github.com/Gyarbij/Plexist/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/Gyarbij/Plexist/actions/workflows/codeql-analysis.yml) [![DockerHub](https://github.com/Gyarbij/Plexist/actions/workflows/image.yml/badge.svg)](https://github.com/Gyarbij/Plexist/actions/workflows/image.yml)
1+
[![CodeQL](https://github.com/Gyarbij/Plexist/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/Gyarbij/Plexist/actions/workflows/codeql-analysis.yml) [![DockerHub](https://github.com/Gyarbij/Plexist/actions/workflows/image.yml/badge.svg)](https://github.com/Gyarbij/Plexist/actions/workflows/image.yml) [![Docker Dev Image CI](https://github.com/Gyarbij/Plexist/actions/workflows/dev-docker-image.yml/badge.svg)](https://github.com/Gyarbij/Plexist/actions/workflows/dev-docker-image.yml)
22

33
# Plexist
44
Plex+Playlist=Plexist, An application for recreating and syncing Spotify and Deezer playlist in Plex (because Plex music playlist are a croc of tihs)

0 commit comments

Comments
 (0)