From 0fc93f79c75af3603c3463b5da9fae90bb1a7914 Mon Sep 17 00:00:00 2001 From: Anatoli Babenia Date: Tue, 16 Nov 2021 11:55:35 +0300 Subject: [PATCH 1/2] .dockerignore: no Travis anymore --- .dockerignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index 30a9ca2..46267e9 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,4 +1,3 @@ -.travis.yml .git .gitignore docker-compose.yml From 71bbf480925284b013b6dba91f2e4b700a0afb35 Mon Sep 17 00:00:00 2001 From: Anatoli Babenia Date: Tue, 16 Nov 2021 12:57:14 +0300 Subject: [PATCH 2/2] `gevent` dependency fix on `setuptools` is merged to Alpine https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/27453 --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 032e1db..dba6b24 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,7 @@ FROM alpine:3.14 # fetching cheat sheets ## installing dependencies RUN apk add --update --no-cache git py3-six py3-pygments py3-yaml py3-gevent \ - libstdc++ py3-colorama py3-requests py3-icu py3-redis sed \ - py3-setuptools # https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/27419 + libstdc++ py3-colorama py3-requests py3-icu py3-redis sed ## copying WORKDIR /app COPY . /app