mirror of
				https://github.com/spritsail/plex-media-server.git
				synced 2025-11-04 01:07:18 +00:00 
			
		
		
		
	Merge branch 'pass'
This commit is contained in:
		
							
								
								
									
										111
									
								
								Dockerfile
									
									
									
									
									
								
							
							
						
						
									
										111
									
								
								Dockerfile
									
									
									
									
									
								
							@@ -3,21 +3,22 @@ ARG BUSYBOX_VER=1.36.0
 | 
				
			|||||||
ARG SU_EXEC_VER=0.4
 | 
					ARG SU_EXEC_VER=0.4
 | 
				
			||||||
ARG TINI_VER=0.19.0
 | 
					ARG TINI_VER=0.19.0
 | 
				
			||||||
ARG ZLIB_VER=1.2.13
 | 
					ARG ZLIB_VER=1.2.13
 | 
				
			||||||
ARG LIBXML2_VER=v2.10.3
 | 
					ARG LIBXML2_VER=2.10.3
 | 
				
			||||||
ARG LIBXSLT_VER=v1.1.37
 | 
					ARG LIBXSLT_VER=1.1.37
 | 
				
			||||||
ARG XMLSTAR_VER=1.6.1
 | 
					ARG XMLSTAR_VER=1.6.1
 | 
				
			||||||
ARG OPENSSL_VER=3.0.8
 | 
					ARG OPENSSL_VER=3.0.8
 | 
				
			||||||
ARG CURL_VER=curl-8_0_1
 | 
					ARG NGHTTP2_VER=1.52.0
 | 
				
			||||||
 | 
					ARG CURL_VER=8.1.1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
ARG OUTPUT=/output
 | 
					ARG OUTPUT=/output
 | 
				
			||||||
ARG DESTDIR=/prefix
 | 
					ARG DESTDIR=/prefix
 | 
				
			||||||
 | 
					
 | 
				
			||||||
ARG CFLAGS="-O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -flto"
 | 
					ARG CFLAGS="-O2 -pipe -fstack-protector-strong -D_FORTIFY_SOURCE=2 -flto=auto"
 | 
				
			||||||
ARG LDFLAGS="$CFLAGS -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now"
 | 
					ARG LDFLAGS="$CFLAGS -Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 | 
					# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 | 
				
			||||||
 | 
					
 | 
				
			||||||
FROM spritsail/alpine:3.17 AS builder
 | 
					FROM spritsail/alpine:3.18 AS builder
 | 
				
			||||||
 | 
					
 | 
				
			||||||
RUN apk add --no-cache \
 | 
					RUN apk add --no-cache \
 | 
				
			||||||
        autoconf \
 | 
					        autoconf \
 | 
				
			||||||
@@ -80,14 +81,12 @@ RUN if [ "$(uname -m)" = "aarch64" ]; then \
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
FROM builder AS busybox
 | 
					FROM builder AS busybox
 | 
				
			||||||
 | 
					
 | 
				
			||||||
ARG BUSYBOX_VER
 | 
					 | 
				
			||||||
ARG SU_EXEC_VER
 | 
					 | 
				
			||||||
ARG TINI_VER
 | 
					 | 
				
			||||||
ARG CFLAGS
 | 
					ARG CFLAGS
 | 
				
			||||||
ARG LDFLAGS
 | 
					ARG LDFLAGS
 | 
				
			||||||
ARG MAKEFLAGS
 | 
					ARG MAKEFLAGS
 | 
				
			||||||
ARG OUTPUT
 | 
					ARG OUTPUT
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ARG BUSYBOX_VER
 | 
				
			||||||
WORKDIR /tmp/busybox
 | 
					WORKDIR /tmp/busybox
 | 
				
			||||||
 | 
					
 | 
				
			||||||
RUN curl -fsSL https://busybox.net/downloads/busybox-${BUSYBOX_VER}.tar.bz2 \
 | 
					RUN curl -fsSL https://busybox.net/downloads/busybox-${BUSYBOX_VER}.tar.bz2 \
 | 
				
			||||||
@@ -99,6 +98,7 @@ RUN curl -fsSL https://busybox.net/downloads/busybox-${BUSYBOX_VER}.tar.bz2 \
 | 
				
			|||||||
 && mkdir -p "$OUTPUT/usr/bin" "$OUTPUT/usr/sbin" \
 | 
					 && mkdir -p "$OUTPUT/usr/bin" "$OUTPUT/usr/sbin" \
 | 
				
			||||||
 && ./busybox --list-full | sed -E 's@^(s?bin)@usr/\1@' | xargs -i ln -Tsv /usr/bin/busybox "$OUTPUT/{}"
 | 
					 && ./busybox --list-full | sed -E 's@^(s?bin)@usr/\1@' | xargs -i ln -Tsv /usr/bin/busybox "$OUTPUT/{}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ARG SU_EXEC_VER
 | 
				
			||||||
WORKDIR /tmp/su-exec
 | 
					WORKDIR /tmp/su-exec
 | 
				
			||||||
 | 
					
 | 
				
			||||||
RUN curl -fL https://github.com/frebib/su-exec/archive/v${SU_EXEC_VER}.tar.gz \
 | 
					RUN curl -fL https://github.com/frebib/su-exec/archive/v${SU_EXEC_VER}.tar.gz \
 | 
				
			||||||
@@ -106,6 +106,7 @@ RUN curl -fL https://github.com/frebib/su-exec/archive/v${SU_EXEC_VER}.tar.gz \
 | 
				
			|||||||
 && make \
 | 
					 && make \
 | 
				
			||||||
 && install -Dm755 su-exec "$OUTPUT/usr/sbin/su-exec"
 | 
					 && install -Dm755 su-exec "$OUTPUT/usr/sbin/su-exec"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ARG TINI_VER
 | 
				
			||||||
WORKDIR /tmp/tini
 | 
					WORKDIR /tmp/tini
 | 
				
			||||||
 | 
					
 | 
				
			||||||
RUN curl -fL https://github.com/krallin/tini/archive/v${TINI_VER}.tar.gz \
 | 
					RUN curl -fL https://github.com/krallin/tini/archive/v${TINI_VER}.tar.gz \
 | 
				
			||||||
@@ -118,13 +119,13 @@ RUN curl -fL https://github.com/krallin/tini/archive/v${TINI_VER}.tar.gz \
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
FROM builder AS zlib
 | 
					FROM builder AS zlib
 | 
				
			||||||
 | 
					
 | 
				
			||||||
ARG ZLIB_VER
 | 
					 | 
				
			||||||
ARG CFLAGS
 | 
					ARG CFLAGS
 | 
				
			||||||
ARG LDFLAGS
 | 
					ARG LDFLAGS
 | 
				
			||||||
ARG MAKEFLAGS
 | 
					ARG MAKEFLAGS
 | 
				
			||||||
ARG OUTPUT
 | 
					ARG OUTPUT
 | 
				
			||||||
ARG DESTDIR
 | 
					ARG DESTDIR
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ARG ZLIB_VER
 | 
				
			||||||
WORKDIR /tmp/zlib
 | 
					WORKDIR /tmp/zlib
 | 
				
			||||||
 | 
					
 | 
				
			||||||
RUN curl -sSf https://www.zlib.net/zlib-$ZLIB_VER.tar.xz \
 | 
					RUN curl -sSf https://www.zlib.net/zlib-$ZLIB_VER.tar.xz \
 | 
				
			||||||
@@ -132,27 +133,15 @@ RUN curl -sSf https://www.zlib.net/zlib-$ZLIB_VER.tar.xz \
 | 
				
			|||||||
 && ./configure \
 | 
					 && ./configure \
 | 
				
			||||||
        --prefix=/usr \
 | 
					        --prefix=/usr \
 | 
				
			||||||
        --shared \
 | 
					        --shared \
 | 
				
			||||||
 | 
					 && make install \
 | 
				
			||||||
 && make DESTDIR="$DESTDIR" install \
 | 
					 && make DESTDIR="$DESTDIR" install \
 | 
				
			||||||
 && mkdir -p "$OUTPUT/usr/lib" \
 | 
					 && mkdir -p "$OUTPUT/usr/lib" \
 | 
				
			||||||
 && cp -a "$DESTDIR"/usr/lib/*.so* "$OUTPUT/usr/lib"
 | 
					 && cp -aP "$DESTDIR"/usr/lib/*.so* "$OUTPUT/usr/lib"
 | 
				
			||||||
 | 
					 | 
				
			||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
FROM builder AS xml
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
ARG LIBXML2_VER
 | 
					ARG LIBXML2_VER
 | 
				
			||||||
ARG LIBXSLT_VER
 | 
					 | 
				
			||||||
ARG XMLSTAR_VER
 | 
					 | 
				
			||||||
ARG CFLAGS
 | 
					 | 
				
			||||||
ARG LDFLAGS
 | 
					 | 
				
			||||||
ARG MAKEFLAGS
 | 
					 | 
				
			||||||
ARG OUTPUT
 | 
					 | 
				
			||||||
ARG DESTDIR
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
COPY --from=zlib "$DESTDIR" "$DESTDIR"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
WORKDIR /tmp/libxml2
 | 
					WORKDIR /tmp/libxml2
 | 
				
			||||||
RUN git clone https://gitlab.gnome.org/GNOME/libxml2.git --branch $LIBXML2_VER --depth 1 . \
 | 
					
 | 
				
			||||||
 | 
					RUN git clone https://gitlab.gnome.org/GNOME/libxml2.git --branch v$LIBXML2_VER --depth 1 . \
 | 
				
			||||||
 && ./autogen.sh \
 | 
					 && ./autogen.sh \
 | 
				
			||||||
        --prefix=/usr \
 | 
					        --prefix=/usr \
 | 
				
			||||||
        --with-zlib="$DESTDIR/usr" \
 | 
					        --with-zlib="$DESTDIR/usr" \
 | 
				
			||||||
@@ -165,12 +154,24 @@ RUN git clone https://gitlab.gnome.org/GNOME/libxml2.git --branch $LIBXML2_VER -
 | 
				
			|||||||
        --without-legacy \
 | 
					        --without-legacy \
 | 
				
			||||||
        --without-modules \
 | 
					        --without-modules \
 | 
				
			||||||
        --without-python \
 | 
					        --without-python \
 | 
				
			||||||
 | 
					 && make install \
 | 
				
			||||||
 && make DESTDIR="$DESTDIR" install \
 | 
					 && make DESTDIR="$DESTDIR" install \
 | 
				
			||||||
 && mkdir -p "$OUTPUT/usr/lib" \
 | 
					 && cp -aP "$DESTDIR"/usr/lib/*.so* "$OUTPUT/usr/lib"
 | 
				
			||||||
 && cp -a "$DESTDIR"/usr/lib/*.so* "$OUTPUT/usr/lib"
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					FROM zlib AS xml
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ARG CFLAGS
 | 
				
			||||||
 | 
					ARG LDFLAGS
 | 
				
			||||||
 | 
					ARG MAKEFLAGS
 | 
				
			||||||
 | 
					ARG OUTPUT
 | 
				
			||||||
 | 
					ARG DESTDIR
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ARG LIBXSLT_VER
 | 
				
			||||||
WORKDIR /tmp/libxslt
 | 
					WORKDIR /tmp/libxslt
 | 
				
			||||||
RUN git clone https://gitlab.gnome.org/GNOME/libxslt.git --branch $LIBXSLT_VER --depth 1 . \
 | 
					
 | 
				
			||||||
 | 
					RUN git clone https://gitlab.gnome.org/GNOME/libxslt.git --branch v$LIBXSLT_VER --depth 1 . \
 | 
				
			||||||
 && ./autogen.sh \
 | 
					 && ./autogen.sh \
 | 
				
			||||||
        --prefix=/usr \
 | 
					        --prefix=/usr \
 | 
				
			||||||
        --with-libxml-src=../libxml2 \
 | 
					        --with-libxml-src=../libxml2 \
 | 
				
			||||||
@@ -178,11 +179,12 @@ RUN git clone https://gitlab.gnome.org/GNOME/libxslt.git --branch $LIBXSLT_VER -
 | 
				
			|||||||
        --without-plugins \
 | 
					        --without-plugins \
 | 
				
			||||||
        --without-python \
 | 
					        --without-python \
 | 
				
			||||||
 && make DESTDIR="$DESTDIR" install \
 | 
					 && make DESTDIR="$DESTDIR" install \
 | 
				
			||||||
 && mkdir -p "$OUTPUT/usr/lib" \
 | 
					 && cp -aP "$DESTDIR"/usr/lib/*.so* "$OUTPUT/usr/lib"
 | 
				
			||||||
 && cp -a "$DESTDIR"/usr/lib/*.so* "$OUTPUT/usr/lib"
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ARG XMLSTAR_VER
 | 
				
			||||||
ADD xmlstarlet-*.patch /tmp
 | 
					ADD xmlstarlet-*.patch /tmp
 | 
				
			||||||
WORKDIR /tmp/xmlstarlet
 | 
					WORKDIR /tmp/xmlstarlet
 | 
				
			||||||
 | 
					
 | 
				
			||||||
RUN git clone git://git.code.sf.net/p/xmlstar/code --branch $XMLSTAR_VER --depth 1 . \
 | 
					RUN git clone git://git.code.sf.net/p/xmlstar/code --branch $XMLSTAR_VER --depth 1 . \
 | 
				
			||||||
 && git apply /tmp/xmlstarlet*.patch \
 | 
					 && git apply /tmp/xmlstarlet*.patch \
 | 
				
			||||||
 && autoreconf -sif \
 | 
					 && autoreconf -sif \
 | 
				
			||||||
@@ -196,19 +198,17 @@ RUN git clone git://git.code.sf.net/p/xmlstar/code --branch $XMLSTAR_VER --depth
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 | 
					# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 | 
				
			||||||
 | 
					
 | 
				
			||||||
FROM builder AS curl
 | 
					FROM zlib AS curl
 | 
				
			||||||
 | 
					
 | 
				
			||||||
ARG OPENSSL_VER
 | 
					 | 
				
			||||||
ARG CURL_VER
 | 
					 | 
				
			||||||
ARG CFLAGS
 | 
					ARG CFLAGS
 | 
				
			||||||
ARG LDFLAGS
 | 
					ARG LDFLAGS
 | 
				
			||||||
ARG MAKEFLAGS
 | 
					ARG MAKEFLAGS
 | 
				
			||||||
ARG OUTPUT
 | 
					ARG OUTPUT
 | 
				
			||||||
ARG DESTDIR
 | 
					ARG DESTDIR
 | 
				
			||||||
 | 
					
 | 
				
			||||||
COPY --from=zlib "$DESTDIR" "$DESTDIR"
 | 
					ARG OPENSSL_VER
 | 
				
			||||||
 | 
					 | 
				
			||||||
WORKDIR /tmp/openssl
 | 
					WORKDIR /tmp/openssl
 | 
				
			||||||
 | 
					
 | 
				
			||||||
RUN curl -sSL https://openssl.org/source/openssl-${OPENSSL_VER}.tar.gz \
 | 
					RUN curl -sSL https://openssl.org/source/openssl-${OPENSSL_VER}.tar.gz \
 | 
				
			||||||
        | tar xz --strip-components=1 \
 | 
					        | tar xz --strip-components=1 \
 | 
				
			||||||
 && ./config \
 | 
					 && ./config \
 | 
				
			||||||
@@ -226,17 +226,38 @@ RUN curl -sSL https://openssl.org/source/openssl-${OPENSSL_VER}.tar.gz \
 | 
				
			|||||||
 && make DESTDIR="$DESTDIR" \
 | 
					 && make DESTDIR="$DESTDIR" \
 | 
				
			||||||
    install_sw \
 | 
					    install_sw \
 | 
				
			||||||
    install_ssldirs \
 | 
					    install_ssldirs \
 | 
				
			||||||
 && mkdir -p "$OUTPUT/usr/lib" \
 | 
					 && make install_sw install_ssldirs \
 | 
				
			||||||
 && cp -a "$DESTDIR"/usr/lib/*.so* "$OUTPUT/usr/lib" \
 | 
					 && cp -aP "$DESTDIR"/usr/lib/*.so* "$OUTPUT/usr/lib" \
 | 
				
			||||||
 && sed -i "s@prefix=/usr@prefix=$DESTDIR/usr@g" "$DESTDIR"/usr/lib/pkgconfig/*.pc
 | 
					 && sed -i "s@prefix=/usr@prefix=$DESTDIR/usr@g" "$DESTDIR"/usr/lib/pkgconfig/*.pc
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# /usr/lib # curl --version
 | 
					ARG NGHTTP2_VER
 | 
				
			||||||
# curl 7.74.0-DEV (x86_64-pc-linux-musl) libcurl/7.73.0-DEV OpenSSL/1.1.1i zlib/1.2.11 nghttp2/1.41.0
 | 
					WORKDIR /tmp/libnghttp2
 | 
				
			||||||
# Protocols: http https
 | 
					 | 
				
			||||||
# Features: AsynchDNS HTTP2 HTTPS-proxy IPv6 Largefile libz SSL UnixSockets
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					RUN git clone https://github.com/nghttp2/nghttp2.git -b v$NGHTTP2_VER --depth 1 . \
 | 
				
			||||||
 | 
					 && autoreconf -i \
 | 
				
			||||||
 | 
					 && ./configure \
 | 
				
			||||||
 | 
					        --prefix=/usr \
 | 
				
			||||||
 | 
					        --enable-lib-only \
 | 
				
			||||||
 | 
					        --with-libxml2=yes \
 | 
				
			||||||
 | 
					        --with-openssl=yes \
 | 
				
			||||||
 | 
					        --with-zlib=yes \
 | 
				
			||||||
 | 
					 && make DESTDIR="$DESTDIR" install \
 | 
				
			||||||
 | 
					 && cp -aP "$DESTDIR"/usr/lib/libnghttp2*.so* "$OUTPUT/usr/lib"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# /usr/lib # curl --version
 | 
				
			||||||
 | 
					# curl 8.0.1 (x86_64-pc-linux-musl) libcurl/8.0.1 OpenSSL/3.0.8 zlib/1.2.13 nghttp2/1.52.0
 | 
				
			||||||
 | 
					# Release-Date: 2023-03-20
 | 
				
			||||||
 | 
					# Protocols: http https
 | 
				
			||||||
 | 
					# Features: alt-svc AsynchDNS HSTS HTTP2 HTTPS-proxy IPv6 Largefile libz SSL threadsafe UnixSockets
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ARG CURL_VER
 | 
				
			||||||
WORKDIR /tmp/curl
 | 
					WORKDIR /tmp/curl
 | 
				
			||||||
RUN git clone https://github.com/curl/curl.git --branch $CURL_VER --depth 1 . \
 | 
					RUN export CURL_TAG=curl-${CURL_VER//./_} \
 | 
				
			||||||
 | 
					 && git clone https://github.com/curl/curl.git --branch $CURL_TAG --depth 1 . \
 | 
				
			||||||
 | 
					 && sed -i \
 | 
				
			||||||
 | 
					        -e "/\WLIBCURL_VERSION\W/c #define LIBCURL_VERSION \"$CURL_VER\"" \
 | 
				
			||||||
 | 
					        -e "/\WLIBCURL_TIMESTAMP\W/c #define LIBCURL_TIMESTAMP \"$(git log -1 --format=%cs "$CURL_TAG")\"" \
 | 
				
			||||||
 | 
					        include/curl/curlver.h \
 | 
				
			||||||
 && autoreconf -sif \
 | 
					 && autoreconf -sif \
 | 
				
			||||||
 && ./configure \
 | 
					 && ./configure \
 | 
				
			||||||
        --prefix=/usr \
 | 
					        --prefix=/usr \
 | 
				
			||||||
@@ -245,6 +266,7 @@ RUN git clone https://github.com/curl/curl.git --branch $CURL_VER --depth 1 . \
 | 
				
			|||||||
        --enable-largefile \
 | 
					        --enable-largefile \
 | 
				
			||||||
        --enable-proxy \
 | 
					        --enable-proxy \
 | 
				
			||||||
        --enable-unix-sockets \
 | 
					        --enable-unix-sockets \
 | 
				
			||||||
 | 
					        --with-libnghttp2="$DESTDIR/usr" \
 | 
				
			||||||
        --with-ssl="$DESTDIR/usr" \
 | 
					        --with-ssl="$DESTDIR/usr" \
 | 
				
			||||||
        --with-zlib="$DESTDIR/usr" \
 | 
					        --with-zlib="$DESTDIR/usr" \
 | 
				
			||||||
        --enable-optimize \
 | 
					        --enable-optimize \
 | 
				
			||||||
@@ -281,9 +303,7 @@ RUN git clone https://github.com/curl/curl.git --branch $CURL_VER --depth 1 . \
 | 
				
			|||||||
        --without-winidn \
 | 
					        --without-winidn \
 | 
				
			||||||
 && make DESTDIR="$DESTDIR" install \
 | 
					 && make DESTDIR="$DESTDIR" install \
 | 
				
			||||||
 && install -Dm755 "$DESTDIR/usr/bin/curl" "$OUTPUT/usr/bin/curl" \
 | 
					 && install -Dm755 "$DESTDIR/usr/bin/curl" "$OUTPUT/usr/bin/curl" \
 | 
				
			||||||
    # Cheat and "borrow" libnghttp2 from Alpine
 | 
					 && cp -aP "$DESTDIR"/usr/lib/*.so* "$OUTPUT/usr/lib"
 | 
				
			||||||
 && mkdir -p "$OUTPUT/usr/lib" \
 | 
					 | 
				
			||||||
 && cp -a "$DESTDIR"/usr/lib/*.so* /usr/lib/libnghttp2.so* "$OUTPUT/usr/lib"
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 | 
					# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -294,7 +314,6 @@ WORKDIR $OUTPUT
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
COPY --from=plex    "$OUTPUT" .
 | 
					COPY --from=plex    "$OUTPUT" .
 | 
				
			||||||
COPY --from=busybox "$OUTPUT" .
 | 
					COPY --from=busybox "$OUTPUT" .
 | 
				
			||||||
COPY --from=zlib    "$OUTPUT" .
 | 
					 | 
				
			||||||
COPY --from=xml     "$OUTPUT" .
 | 
					COPY --from=xml     "$OUTPUT" .
 | 
				
			||||||
COPY --from=curl    "$OUTPUT" .
 | 
					COPY --from=curl    "$OUTPUT" .
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user