update 3.2.3
This commit is contained in:
11
Dockerfile
11
Dockerfile
@@ -1,22 +1,23 @@
|
|||||||
FROM ubuntu:18.04 as builder
|
FROM ubuntu:22.04 as builder
|
||||||
|
|
||||||
ARG VERSION="3.1.49_ubuntu_18.04"
|
ARG VERSION="acestream_3.2.3_ubuntu_22.04_x86_64_py3.10"
|
||||||
RUN apt-get update &&\
|
RUN apt-get update &&\
|
||||||
apt-get install --no-install-recommends --yes wget && \
|
apt-get install --no-install-recommends --yes wget && \
|
||||||
apt-get clean && \
|
apt-get clean && \
|
||||||
rm --force --recursive /var/lib/apt/lists
|
rm --force --recursive /var/lib/apt/lists
|
||||||
RUN mkdir /opt/acestream && \
|
RUN mkdir /opt/acestream && \
|
||||||
wget --no-check-certificate -O- "https://download.acestream.media/linux/acestream_3.1.49_ubuntu_18.04_x86_64.tar.gz" | \
|
wget --no-check-certificate -O- "https://download.acestream.media/linux/acestream_3.2.3_ubuntu_22.04_x86_64_py3.10.tar.gz" | \
|
||||||
tar -xz -C /opt/acestream
|
tar -xz -C /opt/acestream
|
||||||
|
|
||||||
# actual image
|
# actual image
|
||||||
FROM ubuntu:18.04
|
FROM ubuntu:22.04
|
||||||
LABEL maintainer="Jack Liar <zhigu1017@gmail.com>"
|
LABEL maintainer="Jack Liar <zhigu1017@gmail.com>"
|
||||||
RUN apt-get update --yes && \
|
RUN apt-get update --yes && \
|
||||||
apt-get install --no-install-recommends --yes \
|
apt-get install --no-install-recommends --yes \
|
||||||
apt-utils python-setuptools python-m2crypto python-apsw libpython2.7 libssl1.0.0 net-tools libxslt1.1 && \
|
apt-utils python3-setuptools python3-m2crypto python3-apsw python3-lxml python3-nacl python3-pip libpython3.10 net-tools libxslt1.1 && \
|
||||||
apt-get clean && \
|
apt-get clean && \
|
||||||
rm --force --recursive /var/lib/apt/lists
|
rm --force --recursive /var/lib/apt/lists
|
||||||
|
RUN pip install pycryptodome
|
||||||
COPY --from=builder /opt/acestream /opt/acestream
|
COPY --from=builder /opt/acestream /opt/acestream
|
||||||
|
|
||||||
EXPOSE 6878
|
EXPOSE 6878
|
||||||
|
|||||||
Reference in New Issue
Block a user