File tree Expand file tree Collapse file tree 12 files changed +29
-30
lines changed
Expand file tree Collapse file tree 12 files changed +29
-30
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ LABEL org.opencontainers.image.source="https://github.com/CubeCoders/docke
77LABEL org.opencontainers.image.licenses=MIT
88
99ENV AMP_CONTAINER="DOCKER"
10+ ENV DEBIAN_FRONTEND="noninteractive"
1011
11- ARG DEBIAN_FRONTEND="noninteractive"
1212ARG TARGETARCH
1313
1414# Update base packages and install dependencies
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ FROM ghcr.io/cubecoders/amp:debian
55
66LABEL org.opencontainers.image.licenses=MIT
77
8- ARG DEBIAN_FRONTEND="noninteractive"
8+ ENV DEBIAN_FRONTEND="noninteractive"
99
1010# Install required packages and Temurin Java LTS versions
1111RUN set -eux; \
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ FROM ghcr.io/cubecoders/amp:debian
55
66LABEL org.opencontainers.image.licenses=MIT
77
8- ARG DEBIAN_FRONTEND="noninteractive"
8+ ENV DEBIAN_FRONTEND="noninteractive"
99
1010# Install required packages and Mono
1111RUN set -eux; \
Original file line number Diff line number Diff line change @@ -5,8 +5,7 @@ FROM ghcr.io/cubecoders/amp:debian
55LABEL org.opencontainers.image.licenses=MIT
66
77ENV PIP_DISABLE_PIP_VERSION_CHECK="1"
8-
9- ARG DEBIAN_FRONTEND="noninteractive"
8+ ENV DEBIAN_FRONTEND="noninteractive"
109
1110# System Python (3.11) from Debian
1211RUN set -eux; \
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ FROM python:3.12-slim-bookworm AS py312
77FROM ghcr.io/cubecoders/amp:python-3.11
88LABEL org.opencontainers.image.licenses=MIT
99
10- ARG DEBIAN_FRONTEND="noninteractive"
10+ ENV DEBIAN_FRONTEND="noninteractive"
1111
1212# Drop in upstream Python 3.10
1313COPY --from=py310 /usr/local/bin/python3.10 /usr/local/bin/
Original file line number Diff line number Diff line change @@ -35,7 +35,6 @@ if [[ -n "${AMP_CONTAINER_DEPS:-}" ]]; then
3535fi
3636if (( ${# REQUIRED_DEPS[@]} )) ; then
3737 echo " [Info] Installing extra dependencies..."
38- DEBIAN_FRONTEND=" noninteractive"
3938 apt-get update
4039 apt-get install -o APT::Keep-Downloaded-Packages=" false" -y --no-install-recommends --allow-downgrades " ${REQUIRED_DEPS[@]} "
4140 apt-get clean
Original file line number Diff line number Diff line change 33
44FROM debian:bookworm-slim AS depsfinder
55
6- ARG DEBIAN_FRONTEND="noninteractive"
7- ARG TARGETARCH
6+ ENV DEBIAN_FRONTEND="noninteractive"
87
8+ ARG TARGETARCH
99ARG WINE_LINK="https://dl.winehq.org/wine-builds/debian/pool/main/w/wine/"
1010ARG WINE_BRANCH="stable"
1111ARG WINE_DIST="bookworm"
@@ -32,9 +32,9 @@ FROM ghcr.io/cubecoders/amp:wine-common
3232
3333LABEL org.opencontainers.image.licenses=MIT
3434
35- ARG DEBIAN_FRONTEND="noninteractive"
36- ARG TARGETARCH
35+ ENV DEBIAN_FRONTEND="noninteractive"
3736
37+ ARG TARGETARCH
3838ARG WINE_LINK="https://dl.winehq.org/wine-builds/debian/pool/main/w/wine/"
3939ARG WINE_BRANCH="stable"
4040ARG WINE_DIST="bookworm"
Original file line number Diff line number Diff line change 33
44FROM debian:bookworm-slim AS depsfinder
55
6- ARG DEBIAN_FRONTEND="noninteractive"
7- ARG TARGETARCH
6+ ENV DEBIAN_FRONTEND="noninteractive"
87
8+ ARG TARGETARCH
99ARG WINE_LINK="https://dl.winehq.org/wine-builds/debian/pool/main/w/wine/"
1010ARG WINE_BRANCH="stable"
1111ARG WINE_DIST="bookworm"
@@ -32,9 +32,9 @@ FROM ghcr.io/cubecoders/amp:wine-common
3232
3333LABEL org.opencontainers.image.licenses=MIT
3434
35- ARG DEBIAN_FRONTEND="noninteractive"
36- ARG TARGETARCH
35+ ENV DEBIAN_FRONTEND="noninteractive"
3736
37+ ARG TARGETARCH
3838ARG WINE_LINK="https://dl.winehq.org/wine-builds/debian/pool/main/w/wine/"
3939ARG WINE_BRANCH="stable"
4040ARG WINE_DIST="bookworm"
Original file line number Diff line number Diff line change 33
44FROM debian:bookworm-slim AS depsfinder
55
6- ARG DEBIAN_FRONTEND="noninteractive"
7- ARG TARGETARCH
6+ ENV DEBIAN_FRONTEND="noninteractive"
87
8+ ARG TARGETARCH
99ARG BUILDS="stable devel staging 10-stable 9-stable"
1010ARG WINE_DIST="bookworm"
1111
@@ -37,7 +37,8 @@ FROM ghcr.io/cubecoders/amp:debian
3737
3838LABEL org.opencontainers.image.licenses=MIT
3939
40- ARG DEBIAN_FRONTEND=noninteractive
40+ ENV DEBIAN_FRONTEND="noninteractive"
41+
4142ARG TARGETARCH
4243
4344COPY --from=depsfinder /tmp/wine-files /tmp/wine-files
Original file line number Diff line number Diff line change 33
44FROM debian:bookworm-slim AS depsfinder
55
6- ARG DEBIAN_FRONTEND="noninteractive"
7- ARG TARGETARCH
6+ ENV DEBIAN_FRONTEND="noninteractive"
87
8+ ARG TARGETARCH
99ARG WINE_LINK="https://dl.winehq.org/wine-builds/debian/pool/main/w/wine/"
1010ARG WINE_BRANCH="devel"
1111ARG WINE_DIST="bookworm"
@@ -31,9 +31,9 @@ FROM ghcr.io/cubecoders/amp:wine-common
3131
3232LABEL org.opencontainers.image.licenses=MIT
3333
34- ARG DEBIAN_FRONTEND="noninteractive"
35- ARG TARGETARCH
34+ ENV DEBIAN_FRONTEND="noninteractive"
3635
36+ ARG TARGETARCH
3737ARG WINE_LINK="https://dl.winehq.org/wine-builds/debian/pool/main/w/wine/"
3838ARG WINE_BRANCH="devel"
3939ARG WINE_DIST="bookworm"
You can’t perform that action at this time.
0 commit comments