Skip to content

Commit 42538c6

Browse files
author
nold
committed
fix(dockerfile): bump python 3.8
1 parent d43b977 commit 42538c6

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

Dockerfile

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1-
FROM python:3.7-slim-stretch
1+
FROM python:3.8-slim
22

33
RUN apt-get update && \
44
apt-get install --no-install-recommends -y \
5-
git build-essential \
6-
libssl-dev zlib1g-dev libbz2-dev libreadline-dev \
7-
libsqlite3-dev libffi-dev libxml2-dev libxslt1-dev \
8-
libre2-dev pkg-config && \
5+
git wget ca-certificates git build-essential libssl-dev zlib1g-dev \
6+
libbz2-dev libreadline-dev libsqlite3-dev libffi-dev libxml2-dev \
7+
libxslt1-dev libre2-dev pkg-config && \
98
pip3 install --no-binary lxml --upgrade git+https://github.com/ArchiveTeam/grab-site && \
109
apt-get purge -y \
1110
git build-essential pkg-config && \
12-
apt-get autoremove -y && apt-get clean && \
11+
apt-get autoremove -y && apt-get clean && \
1312
rm -rf /var/lib/apt/lists/* /var/tmp/* /tmp/*
1413

1514
VOLUME /data

0 commit comments

Comments
 (0)