From 8185ffffdfb7c1ca7118f86ab84311d49607128e Mon Sep 17 00:00:00 2001 From: Michael Whittle Date: Sat, 12 Aug 2023 13:50:21 +0100 Subject: [PATCH 1/5] Update Dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d8254c44..d6e282ad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,8 @@ RUN pip config --user set global.extra-index-url https://www.piwheels.org/simple COPY requirements.txt . -RUN python -m pip install --no-cache-dir -U pip && \ +# RUN python -m pip install --no-cache-dir -U pip && \ +RUN python3 -m pip install --no-cache-dir -U pip==19.3.1 && \ python3 -m pip install --no-cache-dir -r requirements.txt COPY . /app From d0256f64a924819ddb6303b50d50c8dcc7789e29 Mon Sep 17 00:00:00 2001 From: Michael Whittle Date: Sat, 12 Aug 2023 13:51:33 +0100 Subject: [PATCH 2/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f532dc57..1f50568f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Python Crypto Bot v8.2.0 (pycryptobot) +# Python Crypto Bot v8.2.1 (pycryptobot) [![Docker](https://github.com/whittlem/pycryptobot/actions/workflows/container.yml/badge.svg)](https://github.com/whittlem/pycryptobot/actions/workflows/container.yml/badge.svg) [![Tests](https://github.com/whittlem/pycryptobot/actions/workflows/unit-tests.yml/badge.svg)](https://github.com/whittlem/pycryptobot/actions/workflows/unit-tests.yml/badge.svg) From 40ddd79080f600e5f249c926406ff7b869a69aba Mon Sep 17 00:00:00 2001 From: Michael Whittle Date: Sat, 12 Aug 2023 19:53:41 +0100 Subject: [PATCH 3/5] troubleshooting docker image issue --- Dockerfile | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index d6e282ad..d5fcdcec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,8 +15,8 @@ RUN pip config --user set global.extra-index-url https://www.piwheels.org/simple COPY requirements.txt . -# RUN python -m pip install --no-cache-dir -U pip && \ -RUN python3 -m pip install --no-cache-dir -U pip==19.3.1 && \ +# RUN python3 -m pip install --no-cache-dir -U pip && \ +RUN pip3 install --upgrade --no-cache-dir pip && \ python3 -m pip install --no-cache-dir -r requirements.txt COPY . /app diff --git a/README.md b/README.md index 1f50568f..1b8a3f07 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Python Crypto Bot v8.2.1 (pycryptobot) +# Python Crypto Bot v8.2.2 (pycryptobot) [![Docker](https://github.com/whittlem/pycryptobot/actions/workflows/container.yml/badge.svg)](https://github.com/whittlem/pycryptobot/actions/workflows/container.yml/badge.svg) [![Tests](https://github.com/whittlem/pycryptobot/actions/workflows/unit-tests.yml/badge.svg)](https://github.com/whittlem/pycryptobot/actions/workflows/unit-tests.yml/badge.svg) From d973ba1feaa649a5d21854178a0df95c30b60439 Mon Sep 17 00:00:00 2001 From: Michael Whittle Date: Sun, 13 Aug 2023 23:45:15 +0100 Subject: [PATCH 4/5] troubleshooting docker issue --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d5fcdcec..f2f19cbd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM python:3.11.4-slim-bullseye AS compile-image RUN DEBIAN_FRONTEND=noninteractive apt-get update && \ apt-get install --no-install-recommends -y \ - build-essential && \ + build-essential zlib-dev && \ rm -rf /var/lib/apt/lists/* WORKDIR /app From fe4bbe9116fd20d0a7da8edf0477bd06c05f2cec Mon Sep 17 00:00:00 2001 From: Michael Whittle Date: Mon, 14 Aug 2023 10:32:49 +0100 Subject: [PATCH 5/5] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f2f19cbd..d5fcdcec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM python:3.11.4-slim-bullseye AS compile-image RUN DEBIAN_FRONTEND=noninteractive apt-get update && \ apt-get install --no-install-recommends -y \ - build-essential zlib-dev && \ + build-essential && \ rm -rf /var/lib/apt/lists/* WORKDIR /app