Skip to content

Commit

Permalink
Revert to 3.12-rc-slim
Browse files Browse the repository at this point in the history
  • Loading branch information
Gyarbij committed Aug 20, 2023
1 parent f8b4ae8 commit 76523b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Base image: https://hub.docker.com/_/python
FROM python:3.12-rc
FROM python:3.12-rc-slim

# Prevents Python from generating .pyc files in the container
ENV PYTHONDONTWRITEBYTECODE=1
Expand All @@ -16,7 +16,7 @@ RUN apt-get update && apt-get install -y \

# Install pip requirements
COPY requirements.txt .
RUN python -m pip install -r requirements.txt
RUN python -m pip install --no-cache-dir -r requirements.txt

WORKDIR /app
COPY . /app
Expand All @@ -28,4 +28,4 @@ USER plexist
# During debugging, this entry point will be overridden.
CMD ["python", "plexist/plexist.py"]

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

0 comments on commit 76523b3

Please sign in to comment.