Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Multi-stage build for Dispatcharr Channel Guide

# Stage 1: Python application
FROM python:3.11-slim as python-app
FROM python:3.14-slim as python-app

WORKDIR /app

# Install dependencies and curl for healthcheck
COPY requirements.txt .
RUN apt-get update && apt-get install -y --no-install-recommends curl \

Check failure on line 10 in Dockerfile

View workflow job for this annotation

GitHub Actions / Hadolint Dockerfile Lint

DL3008 warning: Pin versions in apt get install. Instead of `apt-get install <package>` use `apt-get install <package>=<version>`
&& rm -rf /var/lib/apt/lists/* \
&& pip install --no-cache-dir -r requirements.txt

Expand Down
Loading