From bb1c8c27413c3f7867aaeefe250cacafcd509f38 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Wed, 14 Apr 2021 18:09:42 -0400 Subject: [PATCH 01/12] Install wheel --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2c52d6c..0dd11ca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM alpine:3.13.4 LABEL maintainer="Tonye Jack " RUN apk add bash python3 py3-pip && \ - pip3 install --no-cache --upgrade pip setuptools + pip3 install --no-cache --upgrade pip wheel setuptools COPY entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh From 07d556af81b5815a530d5eb1970e3a69ae40648c Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Wed, 14 Apr 2021 18:31:46 -0400 Subject: [PATCH 02/12] Update Dockerfile --- Dockerfile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0dd11ca..1c8c850 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,16 @@ FROM alpine:3.13.4 LABEL maintainer="Tonye Jack " -RUN apk add bash python3 py3-pip && \ - pip3 install --no-cache --upgrade pip wheel setuptools +RUN apk update && apk add --virtual .build-deps \ + build-base \ + gcc \ + bash \ + python3 \ + py3-pip + +RUN pip3 install --no-cache --upgrade pip wheel setuptools + +RUN apk del .build-deps COPY entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh From 036367b0c8f77374c9ccfe5c6686c9fc09434f11 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Wed, 14 Apr 2021 18:36:37 -0400 Subject: [PATCH 03/12] Update Dockerfile --- Dockerfile | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1c8c850..9b9fe94 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,14 +2,9 @@ FROM alpine:3.13.4 LABEL maintainer="Tonye Jack " -RUN apk update && apk add --virtual .build-deps \ - build-base \ - gcc \ - bash \ - python3 \ - py3-pip - -RUN pip3 install --no-cache --upgrade pip wheel setuptools +RUN apk update && apk add --virtual .build-deps build-base gcc \ + && apk add bash python3 py3-pip \ + && pip3 install --no-cache --upgrade pip setuptools RUN apk del .build-deps From 5751a3042a7056cd492ff34956e981a571387cd3 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Wed, 14 Apr 2021 18:39:22 -0400 Subject: [PATCH 04/12] Update Dockerfile --- Dockerfile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9b9fe94..2ac1bc7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,11 +2,8 @@ FROM alpine:3.13.4 LABEL maintainer="Tonye Jack " -RUN apk update && apk add --virtual .build-deps build-base gcc \ - && apk add bash python3 py3-pip \ - && pip3 install --no-cache --upgrade pip setuptools - -RUN apk del .build-deps +RUN apk update && apk add bash gcc python3 py3-pip \ + && pip3 install --no-cache --upgrade pip setuptools wheel COPY entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh From d3d59c15f6db7df6445d7fe0b1113ee3154d2c81 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Wed, 14 Apr 2021 18:44:16 -0400 Subject: [PATCH 05/12] Update Dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2ac1bc7..8f3c696 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,8 @@ FROM alpine:3.13.4 LABEL maintainer="Tonye Jack " -RUN apk update && apk add bash gcc python3 py3-pip \ +RUN apk update && \ + apk add bash build-base gcc python3 py3-pip \ && pip3 install --no-cache --upgrade pip setuptools wheel COPY entrypoint.sh /entrypoint.sh From 25612717c6a17f0d508ed19116a7d6155503ba35 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Wed, 14 Apr 2021 18:51:35 -0400 Subject: [PATCH 06/12] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8f3c696..5b74592 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.13.4 +FROM python:3.9-alpine3.13.4 LABEL maintainer="Tonye Jack " From 8388735a0cd618a10e9b0f08a0ab74d63c20ed8b Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Wed, 14 Apr 2021 18:53:05 -0400 Subject: [PATCH 07/12] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5b74592..52610ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9-alpine3.13.4 +FROM python:3.9-alpine3.13 LABEL maintainer="Tonye Jack " From 12c6825237ff78c7aa247def8df8181057fd085b Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Wed, 14 Apr 2021 18:57:35 -0400 Subject: [PATCH 08/12] Update Dockerfile --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 52610ec..580cbc1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,7 @@ FROM python:3.9-alpine3.13 LABEL maintainer="Tonye Jack " RUN apk update && \ - apk add bash build-base gcc python3 py3-pip \ - && pip3 install --no-cache --upgrade pip setuptools wheel + pip3 install --no-cache --upgrade pip setuptools wheel COPY entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh From 6a23001f9477cbb3b864452c4a9a0053a1075856 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Wed, 14 Apr 2021 18:58:50 -0400 Subject: [PATCH 09/12] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 580cbc1..2f17222 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM python:3.9-alpine3.13 LABEL maintainer="Tonye Jack " -RUN apk update && \ +RUN apk update && apk add bash \ pip3 install --no-cache --upgrade pip setuptools wheel COPY entrypoint.sh /entrypoint.sh From 30a2a2609969f59433be6864eb30c9d20fad5b95 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Wed, 14 Apr 2021 18:59:56 -0400 Subject: [PATCH 10/12] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2f17222..70a0861 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM python:3.9-alpine3.13 LABEL maintainer="Tonye Jack " -RUN apk update && apk add bash \ +RUN apk update && apk add bash && \ pip3 install --no-cache --upgrade pip setuptools wheel COPY entrypoint.sh /entrypoint.sh From a586676606e5d885d7e8fd16a7726e8210dab1f6 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Wed, 14 Apr 2021 19:04:49 -0400 Subject: [PATCH 11/12] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 70a0861..14c0d75 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9-alpine3.13 +FROM python:3.9-slim-buster LABEL maintainer="Tonye Jack " From 1853ec5e3e5ad5625768767c47d16b75956eaf79 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Wed, 14 Apr 2021 19:07:08 -0400 Subject: [PATCH 12/12] Update Dockerfile --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 14c0d75..122a539 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,9 @@ FROM python:3.9-slim-buster LABEL maintainer="Tonye Jack " -RUN apk update && apk add bash && \ - pip3 install --no-cache --upgrade pip setuptools wheel +RUN apt-get update \ + && apt-get install -y build-essential \ + && pip3 install --no-cache --upgrade pip setuptools wheel COPY entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh