Skip to content

Commit

Permalink
use py3.12 base for hwaccel
Browse files Browse the repository at this point in the history
  • Loading branch information
feederbox826 committed Oct 1, 2024
1 parent adfc95e commit 1fc4db4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions dockerfile/alpine.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ ARG \
UPSTREAM_STASH="stashapp/stash:${STASH_TAG}"
FROM $UPSTREAM_STASH AS stash

FROM alpine:3.20 AS uv
RUN apk add curl && \
curl -LsSf https://astral.sh/uv/install.sh | sh && \
FROM alpine:3 AS uv
ADD https://astral.sh/uv/install.sh /install.sh
RUN sh /install.sh && \
mv /root/.cargo/bin/uv /uv

FROM alpine:3.20 AS final
Expand Down
8 changes: 4 additions & 4 deletions dockerfile/hwaccel.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ ARG \
UPSTREAM_STASH="stashapp/stash:${STASH_TAG}"
FROM $UPSTREAM_STASH AS stash

FROM alpine:3.20 AS uv
RUN apk add curl && \
curl -LsSf https://astral.sh/uv/install.sh | sh && \
FROM alpine:3 AS uv
ADD https://astral.sh/uv/install.sh /install.sh
RUN sh /install.sh && \
mv /root/.cargo/bin/uv /uv

FROM debian:bookworm-slim AS final
FROM python:3.12-slim-bookworm AS final

# arguments
ARG \
Expand Down

0 comments on commit 1fc4db4

Please sign in to comment.