Skip to content
This repository was archived by the owner on Jan 6, 2021. It is now read-only.

Commit 36e7fc0

Browse files
aptalcathelamer
authored andcommitted
rebase aarch64 to 3.9
1 parent 57863d0 commit 36e7fc0

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

Dockerfile.aarch64

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,18 +63,18 @@ RUN \
6363
php7-xml \
6464
php7-xmlreader \
6565
php7-zip \
66-
py2-cryptography \
67-
py2-future \
68-
py2-pip && \
66+
py3-cryptography \
67+
py3-future \
68+
py3-pip && \
6969
echo "**** install certbot plugins ****" && \
7070
if [ -z ${CERTBOT_VERSION+x} ]; then \
7171
CERTBOT="certbot"; \
7272
else \
7373
CERTBOT="certbot==${CERTBOT_VERSION}"; \
7474
fi && \
75-
pip install -U \
75+
pip3 install -U \
7676
pip && \
77-
pip install -U \
77+
pip3 install -U \
7878
${CERTBOT} \
7979
certbot-dns-cloudflare \
8080
certbot-dns-cloudxns \
@@ -104,6 +104,10 @@ RUN \
104104
/tmp/proxy.tar.gz -C \
105105
/defaults/proxy-confs --strip-components=1 --exclude=linux*/.gitattributes --exclude=linux*/.github && \
106106
echo "**** cleanup ****" && \
107+
for cleanfiles in *.pyc *.pyo; \
108+
do \
109+
find /usr/lib/python3.* -iname "${cleanfiles}" -exec rm -f '{}' + \
110+
; done && \
107111
rm -rf \
108112
/tmp/* \
109113
/root/.cache

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,7 @@ Below are the instructions for updating containers:
234234

235235
## Versions
236236

237+
* **12.04.19:** - Rebase aarch64 image to 3.9.
237238
* **25.03.19:** - Rebase aarch64 image back to 3.8 due to python issues (specifically with fail2ban), switch packages to python 3 on amd64 and armhf, clean up pip/python cache to shrink image size.
238239
* **23.03.19:** - Switching to new Base images, shift to arm32v7 tag.
239240
* **10.03.19:** - Add TLSv1.3 to ssl.conf.

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ app_setup_nginx_reverse_proxy_block: ""
126126

127127
# changelog
128128
changelogs:
129+
- { date: "12.04.19:", desc: "Rebase aarch64 image to 3.9." }
129130
- { date: "25.03.19:", desc: "Rebase aarch64 image back to 3.8 due to python issues (specifically with fail2ban), switch packages to python 3 on amd64 and armhf, clean up pip/python cache to shrink image size." }
130131
- { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." }
131132
- { date: "10.03.19:", desc: "Add TLSv1.3 to ssl.conf." }

0 commit comments

Comments
 (0)