From a1118cc40a723b672ca57edd952396f169641ee2 Mon Sep 17 00:00:00 2001 From: Benjamin Renard Date: Tue, 3 Jan 2023 00:21:44 +0100 Subject: [PATCH] Add the Dockerfile to build the docker brenard/mylib:latest image --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4dd1cc4 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM debian:latest +RUN echo "deb http://debian.zionetrix.net stable main" > /etc/apt/sources.list.d/zionetrix.list +RUN apt-get -o Acquire::AllowInsecureRepositories=true -o Acquire::AllowDowngradeToInsecureRepositories=true update +RUN apt-get -o APT::Get::AllowUnauthenticated=true install --yes zionetrix-archive-keyring +RUN apt-get update +RUN apt-get install -y python3-all python3-dev python3-pip python3-venv python3-mylib build-essential git +RUN python3 -m pip install pylint pytest flake8 flake8-junit-report pylint-junit junitparser