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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.23 AS Build-web
FROM alpine:3.24 AS Build-web

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

Stage names should be lowercase

StageNameCasing: Stage name 'Build-web' should be lowercase More info: https://docs.docker.com/go/dockerfile/rule/stage-name-casing/

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

Stage names should be lowercase

StageNameCasing: Stage name 'Build-web' should be lowercase More info: https://docs.docker.com/go/dockerfile/rule/stage-name-casing/

ENV DARKHTTPD_TAG=v1.14
RUN apk add --no-cache build-base
Expand All @@ -14,7 +14,7 @@
RUN make darkhttpd-static \
&& strip darkhttpd-static

FROM python:3.14-alpine AS Build-app

Check warning on line 17 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

Stage names should be lowercase

StageNameCasing: Stage name 'Build-app' should be lowercase More info: https://docs.docker.com/go/dockerfile/rule/stage-name-casing/

Check warning on line 17 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

Stage names should be lowercase

StageNameCasing: Stage name 'Build-app' should be lowercase More info: https://docs.docker.com/go/dockerfile/rule/stage-name-casing/

RUN apk add --no-cache git binutils clang gcc build-base g++ zlib-dev
RUN pip install --upgrade pip
Expand All @@ -25,7 +25,7 @@
COPY build/* .
RUN pyinstaller LinuxDir2HTML.spec

FROM alpine:3.23 AS app
FROM alpine:3.24 AS app

RUN apk add --no-cache \
bash \
Expand Down