File tree 2 files changed +7
-8
lines changed
2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 1
- FROM alpine:3.19 AS rootfs-stage
1
+ FROM alpine:3.20 AS rootfs-stage
2
2
3
- ARG S6_OVERLAY_VERSION="3.1.6.2 "
3
+ ARG S6_OVERLAY_VERSION="3.2.0.0 "
4
4
ARG TARGETPLATFORM
5
5
6
6
RUN apk add --no-cache \
@@ -30,13 +30,12 @@ RUN tar -C /root-out/ -Jxpf /tmp/s6-overlay-symlinks-noarch.tar.xz
30
30
ADD https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-symlinks-arch.tar.xz /tmp
31
31
RUN tar -C /root-out/ -Jxpf /tmp/s6-overlay-symlinks-arch.tar.xz
32
32
33
- FROM python:3.11 -alpine3.19
33
+ FROM python:3.12 -alpine3.20
34
34
35
35
WORKDIR /app
36
36
COPY --from=rootfs-stage /root-out/ /
37
37
38
- ENV S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0 \
39
- PYTHONDONTWRITEBYTECODE=1
38
+ ENV PYTHONDONTWRITEBYTECODE=1
40
39
41
40
RUN \
42
41
echo "**** install runtime packages ****" && \
57
56
/tmp/*
58
57
59
58
COPY requirements.txt /app/
60
- RUN pip3 install --no-cache-dir -r requirements.txt
59
+ RUN pip install --no-cache-dir -r requirements.txt
61
60
62
61
# copy app and services
63
62
COPY tmdb_notifier/ tmdb_notifier/
Original file line number Diff line number Diff line change 1
- apprise ~= 1.7 .0
2
- requests == 2.31.0
1
+ apprise ~= 1.8 .0
2
+ requests ~= 2.32.3
You can’t perform that action at this time.
0 commit comments