We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 785f799 commit 07a6eabCopy full SHA for 07a6eab
Dockerfile
@@ -1,11 +1,17 @@
1
FROM python:3-alpine
2
3
+# Current version of s3cmd is in edge/testing repo
4
+RUN echo https://dl-cdn.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories
5
+
6
+# Install everything via repo, because repo & pip installs can break things
7
RUN apk update \
8
&& apk add --no-cache \
9
bash \
10
mysql-client \
- && python -m pip install --upgrade pip \
- && pip install s3cmd python-magic
11
+ py3-magic \
12
+ py3-dateutil \
13
+ py3-six \
14
+ s3cmd
15
16
COPY application/ /data/
17
WORKDIR /data
0 commit comments