Adding upstream version 0.8.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
b16cc97368
commit
55e5e7ac79
49 changed files with 4592 additions and 0 deletions
34
Dockerfile.docker
Normal file
34
Dockerfile.docker
Normal file
|
@ -0,0 +1,34 @@
|
|||
ARG PYTHON_VER=3.10
|
||||
|
||||
FROM python:${PYTHON_VER}-slim
|
||||
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y --no-install-recommends ca-certificates \
|
||||
curl \
|
||||
gnupg \
|
||||
lsb-release \
|
||||
&& curl -fsSL https://download.docker.com/linux/ubuntu/gpg | \
|
||||
gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg \
|
||||
&& echo \
|
||||
"deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian \
|
||||
$(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null \
|
||||
&& apt-get update \
|
||||
&& apt-get install -y --no-install-recommends docker-ce-cli \
|
||||
&& rm -rf /var/lib/apt/lists/* \
|
||||
&& rm -Rf /usr/share/doc && rm -Rf /usr/share/man \
|
||||
&& apt-get clean
|
||||
|
||||
RUN pip install --upgrade pip
|
||||
|
||||
WORKDIR /local
|
||||
COPY . /local
|
||||
|
||||
LABEL maintainer="Thomas Grimonet <tom@inetsix.net>"
|
||||
LABEL com.example.version="edge"
|
||||
LABEL com.example.release-date="2022-04-05"
|
||||
LABEL com.example.version.is-production="False"
|
||||
|
||||
ENV PYTHONPATH=/local
|
||||
RUN pip --no-cache-dir install .
|
||||
|
||||
ENTRYPOINT [ "/usr/local/bin/ardl" ]
|
Loading…
Add table
Add a link
Reference in a new issue