From 5c872e0ff33c28b02ca1b4a0738c3a8d4843b489 Mon Sep 17 00:00:00 2001 From: Adrien Dorsaz Date: Sat, 30 May 2020 21:11:45 +0200 Subject: [PATCH] docker: fix pylint3 package name and copy source code to docker images --- docker/buster/Dockerfile | 2 +- docker/jessie/Dockerfile | 4 ++++ docker/stretch/Dockerfile | 4 ++++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/docker/buster/Dockerfile b/docker/buster/Dockerfile index 16c1765..a6fbfbc 100644 --- a/docker/buster/Dockerfile +++ b/docker/buster/Dockerfile @@ -5,7 +5,7 @@ WORKDIR acme_dns_tiny RUN apt-get update \ && apt-get install -y --no-install-recommends \ python3-minimal python3-dnspython python3-requests \ - python3-coverage python3-lint \ + python3-coverage pylint3 \ && apt-get clean COPY . . diff --git a/docker/jessie/Dockerfile b/docker/jessie/Dockerfile index f562a56..1572c8c 100644 --- a/docker/jessie/Dockerfile +++ b/docker/jessie/Dockerfile @@ -1,7 +1,11 @@ FROM debian:jessie-slim +WORKDIR acme_dns_tiny + RUN apt-get update \ && apt-get install -y --no-install-recommends \ python3-minimal python3-dnspython python3-requests \ python3-coverage \ && apt-get clean + +COPY . . diff --git a/docker/stretch/Dockerfile b/docker/stretch/Dockerfile index f562a56..1572c8c 100644 --- a/docker/stretch/Dockerfile +++ b/docker/stretch/Dockerfile @@ -1,7 +1,11 @@ FROM debian:jessie-slim +WORKDIR acme_dns_tiny + RUN apt-get update \ && apt-get install -y --no-install-recommends \ python3-minimal python3-dnspython python3-requests \ python3-coverage \ && apt-get clean + +COPY . . -- GitLab