Skip to content

Commit 785f799

Browse files
committed
Upgrade Dockerfile to use Python3 docker hub image
Python 2.x is deprecated, and so things should be Python 3 long term.
1 parent feb1d32 commit 785f799

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM alpine:3.11
1+
FROM python:3-alpine
22

33
RUN apk update \
44
&& apk add --no-cache \
55
bash \
66
mysql-client \
7-
python py-pip \
7+
&& python -m pip install --upgrade pip \
88
&& pip install s3cmd python-magic
99

1010
COPY application/ /data/

0 commit comments

Comments
 (0)