Skip to content

Commit

Permalink
Merge pull request #7 from silinternational/develop
Browse files Browse the repository at this point in the history
Release 3.1.1
  • Loading branch information
dalenewby authored Jul 17, 2023
2 parents edbf8a5 + e9fe6b6 commit 5336b2a
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
FROM alpine:3.15
FROM python:3-alpine

# Current version of s3cmd is in edge/testing repo
RUN echo https://dl-cdn.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories

# Install everything via repo because repo & pip installs can break things
RUN apk update \
&& apk add --no-cache \
bash \
postgresql12-client \
python3 py-pip \
&& pip install s3cmd python-magic
py3-magic \
py3-dateutil \
s3cmd

COPY application/ /data/
WORKDIR /data
Expand Down

0 comments on commit 5336b2a

Please sign in to comment.