Skip to content

Commit 5336b2a

Browse files
authored
Merge pull request #7 from silinternational/develop
Release 3.1.1
2 parents edbf8a5 + e9fe6b6 commit 5336b2a

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

Dockerfile

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
1-
FROM alpine:3.15
1+
FROM python:3-alpine
22

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
37
RUN apk update \
48
&& apk add --no-cache \
59
bash \
610
postgresql12-client \
7-
python3 py-pip \
8-
&& pip install s3cmd python-magic
11+
py3-magic \
12+
py3-dateutil \
13+
s3cmd
914

1015
COPY application/ /data/
1116
WORKDIR /data

0 commit comments

Comments
 (0)