15 lines
518 B
Docker
15 lines
518 B
Docker
FROM ubuntu:24.04
|
|
|
|
ARG DIE_VERSION=3.21
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends wget ca-certificates \
|
|
&& wget -q https://github.com/horsicq/DIE-engine/releases/download/${DIE_VERSION}/die_${DIE_VERSION}_Ubuntu_24.04_amd64.deb \
|
|
&& apt-get install -y ./die_${DIE_VERSION}_Ubuntu_24.04_amd64.deb \
|
|
&& rm die_${DIE_VERSION}_Ubuntu_24.04_amd64.deb \
|
|
&& apt-get purge -y wget \
|
|
&& apt-get autoremove -y \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
ENTRYPOINT ["/usr/bin/diec"]
|